linux中的hexdump命令

2019-07-13 08:18发布

       之前介绍过linux下的xxd命令, 现在说hexdump, 从含义来讲, 就是把文件中的hex   dump出来, 类似的有objdump, tcpdump,  我们来看看hexdump, 如下: taoge@localhost Desktop> xxd test.cpp 0000000: 766f 6964 2066 756e 2829 0a7b 0a09 696e void fun().{..in 0000010: 7420 6120 3d20 313b 0a7d 0a t a = 1;.}. taoge@localhost Desktop> hexdump -C test.cpp 00000000 76 6f 69 64 20 66 75 6e 28 29 0a 7b 0a 09 69 6e |void fun().{..in| 00000010 74 20 61 20 3d 20 31 3b 0a 7d 0a |t a = 1;.}.| 0000001b taoge@localhost Desktop>
      爽, 我们经常用的tcpdump也是这样哈!