The commandline "xxd" is available in Linux and Mac OS X (though not on other BSD's I've looked at). The author says
The tools weirdness matches its creators brain. Use entirely at your own risk. Copy files. Trace it. Become a wizard.
It is similar to od, but doesn't try to do word interpretation. If what you want to see is hex bytes, displayed in the same order as they actually appear in your file, xxd is the tool.
You don't need extra flags with xxd to get combined hex and ascii :
$ echo "1234" | xxd 0000000: 3132 3334 0a 1234.
Notice that "od -x" interprets and rearranges the bytes in word order:
$ echo "1234" | od -x 0000000 3231 3433 000a 0000005
Some might think it weird, but really it's incredibly useful. Basically, it combines od and dd, which is an excellent marriage by itself. It also can reverse a hex dump. For example, take a text file "t".
$ cat t An ordinary text file. $ xxd t > t.hex $ cat t.hex 0000000: 416e 206f 7264 696e 6172 7920 7465 7874 An ordinary text 0000010: 2066 696c 652e 0a file.. $ xxd -r t.hex An ordinary text file.
Unlike od, xxd doesn't automatically use "*" to indicate repeated blocks, and even if requested (with -a) it will only do this for nul (hex 0) bytes.
Like dd, xxd can skip past bytes, and it can also patch files directly:
$ echo "0000000: 4120 7061 7463 6865 6420 2020" | xxd -r - t $ cat t A patched text file. $ echo "0000010: 2066 6f6f 6c2e" | xxd -r - t $ cat t A patched text fool.
This makes xxd extemely useful in unattended scripting as well as at the command line.
If you have xxd, you can use it with "vi": use :%!xxd to change to hex and :%!xxd -r to go back to text.
More Articles by Anthony Lawrence - Find me on Google+
Have you tried Searching this site?
Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates
This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.
Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.
Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.
We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.
Click here to add your comments
Tue Apr 28 09:53:33 2009: Jasan
http://www.x31.com/~jasan
xxd is part of VIM, so it is pretty portable...
Don't miss responses! Subscribe to Comments by RSS or by Email
Click here to add your comments
If you want a picture to show with your comment, go get a Gravatar