我需要一个shell脚本来转换大端到小端

g9icjywg  于 2023-01-05  发布在  Shell
关注(0)|答案(6)|浏览(335)

我需要一个shell脚本程序来打印十六进制数从大到小
例如

  • 输入:my virtual address = 00d66d7e
  • 输出:7e6dd600

我怎样才能在bash脚本中创建它呢?

mlnl4t2r

mlnl4t2r1#

只是不得不这样做...但从十进制到小端...适应这里:

echo 00d66d7e | tac -rs .. | echo "$(tr -d '\n')"

对于无符号整数的任意大小的十六进制表示形式,可实现所需的结果。
(h/t“tac -rs”mestreLion,非常好!)

qlckcl4x

qlckcl4x2#

对于32位地址,假设它是零填充的:

v=00d66d7e 
echo ${v:6:2}${v:4:2}${v:2:2}${v:0:2}
# 7e6dd600
bfhwhh0e

bfhwhh0e3#

根据Karoly的回答,你可以使用下面的脚本,读取一个参数或管道输入:

#!/bin/bash

# check 1st arg or stdin
if [ $# -ne 1 ]; then
  if [ -t 0 ]; then
    exit
  else
    v=`cat /dev/stdin`
  fi
else
  v=$1
fi

i=${#v}

while [ $i -gt 0 ]
do
    i=$[$i-2]
    echo -n ${v:$i:2}
done

echo

For e.g. you could save this script as endian.sh and make it executable with:

chmod u+x endian.sh

然后:

echo 00d66d7e | ./endian.sh

为您提供:

7e6dd600

对于不同长度的字符串:

echo d76f411475428afc90947ee320 | ./endian.sh

结果将是:

20e37e9490fc8a427514416fd7
  • *#更新:**修改脚本以接受输入作为参数或来自stdin,解决Freewind的请求。
./endian.sh d76f411475428afc90947ee320

还可以为您提供:

20e37e9490fc8a427514416fd7
dgenwo3n

dgenwo3n4#

这适用于dash(以及许多其他shell):

v=0x12345678
v2=$(( (v<<8 & 0xff00ff00) | (v>>8 & 0xff00ff) ))
v2=$(( (v2<<16 & 0xffff0000) | v2>>16 ))
printf '0x%08x\n' $v2

结果应为“0x78563412”

${v:6:2} is for bash.
siotufzp

siotufzp5#

为了回应Freewind的评论请求,我在hutheano's great answer的基础上编写了自己的bash脚本,并在下面提供了一个压缩版本,完整的脚本可以在here下载。

以下实现考虑了奇数长度字符串、0x\x前缀以及多种输出格式,可按如下方式使用:

$ be2le d76f411475428afc90947ee320 0xaaff 0xffa '\x3'
20e37e9490fc8a427514416fd7
0xffaa
0xfa0f
\x03

be2le bash脚本

#!/bin/bash

args=()

format=preserve
delimiter="\n"
nonewline=false
join=false
strip=false

while (( "$#" )); do
    case "$1" in
        -h|--help) usage;;
        -f) format=$2; shift 2;;
        --format=*) format="${1#*=}"; shift;;
        -d) delimiter=$2; shift 2;;
        --delimiter=*) delimiter="${1#*=}"; shift;;
        -n|--no-newline) nonewline=true; shift;;
        -j|--join) join=true; shift;;
        -s|--strip-null) strip=true; shift;;
        -*|--*) echo "Error: unsupported flag $1 specified"; exit 1;;
        *) args=( "${args[@]}" "$1" ); shift;;
    esac
done

case "$format" in
    preserve);;
    int) prefix="0x";;
    char) prefix="\x";; 
    raw) ;;
    *) echo "Error: unsupported format $format"; exit 1;;
esac

n=0
parts=()
for arg in ${args[@]}; do

    digest=""
    prefix=""

    # remove prefix if string begins with "0x"
    if [[ $arg =~ ^[0\\]x ]]; then
        if [ "$format" == "preserve" ]; then
            prefix=${arg:0:2}
        fi
        arg=${arg:2}
    fi

    # zero-pad if string has odd length
    if [ $[${#arg} % 2] != 0 ]; then
        arg="0$arg"
    fi

    part=""
    i=${#arg}
    while [ $i -gt 0 ]; do
        i=$[$i-2]
        byte=${arg:$i:2}
        if [ $strip == true ] && [ -z "$part" ] && [ $byte == "00" ]; then
            continue
        fi
        case "$format" in
            int) part="$part"'0x'"$byte ";;
            char) part="$part\x$byte";;
            raw) part="$part$(printf "%b" "\x$byte")";;
            *) part="$part$byte";;
        esac
    done

    digest="$prefix$digest$part"

    parts=( "${parts[@]}" "$digest" )
    n=$[$n+1]

done

if [ $join == true ]; then
    case "$format" in
        *) printf "%s" "${parts[@]}";;
    esac
else
    i=0
    for part in "${parts[@]}"; do
        if [[ $(($i + 1)) < $n ]]; then
            printf "%s$delimiter" "$part"
        else
            printf "%s" "$part"
        fi
        i=$(($i+1))
    done
fi

if [ $nonewline == false ]; then
    echo
fi
kx5bkwkv

kx5bkwkv6#

此脚本用于翻转16位数据。

#!/bin/bash

if [ -t 0 ]; then exit; fi

data=`cat /dev/stdin | od -An -vtx1 | tr -d ' ' | tr -d '\n'`
length=${#data}

i=0
while [ $i -lt $length ]; do
    echo -n -e "\x${data:$[$i+2]:2}"
    echo -n -e "\x${data:$[$i]:2}"
    i=$[$i+4]
done

相关问题