命令用法
1 | $ xxd [options] [infile [outfile]] |
---|
其中,
- infile 表示要输入进行 16 进制编码的文件
- outfile 表示转换结果的输出文件
使用实例
123456789101112 | 显示十六进制格式gackle@machine:x7e$ echo 1111111 > 1.txtgackle@machine:~$ cat 1.txt1111111gackle@machine:~$ xxd 1.txt00000000: 3131 3131 3131 310a 1111111.转换为二进制形式显示gackle@machine:~$ xxd 1.txt |xxd -r1111111 |
---|
References
- xxd 工具 - Linux in Action
- xxd命令 – 以十六进制形式显示文件内容