45

UNIX shell 脚本中将十进制转换为十六进制

我试图只打印hex valuesfrom hexdump,即不打印行号和 ASCII 表。

但以下命令行不打印任何内容:

hexdump -n 50 -Cs 10 file.bin |  awk '{for(i=NF-17; i>2; --i) print $i}'
4

4 回答 4

71

使用xxd更适合这项工作:

xxd -p -l 50 -seek 10 file.bin

来自man xxd

xxd - make a hexdump or do the reverse.

    -p | -ps | -postscript | -plain
        output in postscript continuous hexdump style. Also known as plain hexdump style.

    -l len | -len len
        stop after writing <len> octets.
 
    -seek offset
        When used after -r: revert with <offset> added to file positions found in hexdump.
于 2013-03-21T17:53:38.197 回答
54

您可以指定要hexdump用于输出的确切格式,但这有点棘手。这是默认输出,减去文件偏移量:

hexdump -e '16/1 "%02x " "\n"' file.bin

(对我来说,这看起来会在每行的末尾产生一个额外的尾随空格,但由于某种原因它不会。)

于 2013-03-21T17:54:15.833 回答
28

作为替代方案,请考虑使用xxd -p file.bin.

于 2013-03-21T17:15:24.770 回答
4

首先,删除-C正在发出 ascii 信息的内容。

然后你可以用

hexdump -n 50 -s 10 file.bin | cut -c 9-
于 2013-03-21T17:06:13.463 回答