Tagged Questions
1
vote
2answers
327 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 ...
