I require the hexdumps of a number of files in a specific format:
00000000 4D 5A 90 00 03 00 00 00 04 00 00 00 FF FF 00 00
However, using hexdump or xxd I can only manage to get the above with a colon after the address and the ASCII text to the right of it, e.g.:
00000000: 4D 5A 90 00 03 00 00 00 04 00 00 00 FF FF 00 00
MZ..............
I got the above using the command
xxd -g 1 -u filename
Any ideas?