|
hexdump
how would I write a program that produces a hexdump for listing a file. I mean something in a format like...
bbbbbbbb xx xx xx xx xx xx xx xx - xx xx xx xx xx xx xx xx pppppppp pppppppp
where the bbbbbbbb is a 8 byte address starting with 0 for the beginning of the file. xx represents a single hex character with a leading 0 if the value is greater than a hex F.
|