mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
12 lines
321 B
Plaintext
12 lines
321 B
Plaintext
|
# Dump file in octal format
|
||
|
od /path/to/binaryfile
|
||
|
od -o /path/to/binaryfile
|
||
|
od -t o2 /path/to/binaryfile
|
||
|
|
||
|
# Dump file in hexadecimal format
|
||
|
od -x /path/to/binaryfile
|
||
|
od -t x2 /path/to/binaryfile
|
||
|
|
||
|
# Dump file in hexadecimal format, with hexadecimal offsets and a space between each byte
|
||
|
od -A x -t x1 /path/to/binaryfile
|