The hexdump tag has no wiki summary.
2
votes
2answers
2k views
How to interpret an octal or hex dump of a binary file?
The binary file has strings and some numbers, If I do
od -c filename or strings filename, I can see the strings properly. But, what about numbers? They are in some weird format.
The text after doing ...
1
vote
2answers
259 views
Does hexdump respect the endianness of its system?
On my machine I get the following output when I run these commands:
$ echo foos > myfile
$ hexdump myfile
6f66 736f 000a
The output from hexdump is big-endian. Does this mean that my machine is ...
