本文介绍了如何用xxd向hexdump插入偏移量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
而不是
0000:< data>
0004:< data>
0008:< data>
我应该得到
Offset + 0000:< data>
抵消+ 0004:< data>
抵消+ 0008:< data>
解决方案
这就是我现在正在做的事情。完美,但它只是添加一个偏移量的一种蹩脚的方法:)) xxd -r -s 0x2e00000 | xxd -s 0x2e00000> file.hex
Is there an easy way to add an offset to the hex dump generated by xxd ?
i.e instead of
0000: <data>
0004: <data>
0008: <data>
I should get
Offset+0000: <data>
Offset+0004: <data>
Offset+0008: <data>
解决方案
This is what I am doing now..It works perfectly but its kind of lame approach for just adding an offset :)
xxd file.bin | xxd -r -s 0x2e00000 | xxd -s 0x2e00000 > file.hex
这篇关于如何用xxd向hexdump插入偏移量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!