mirror of
https://github.com/cheat/cheat.git
synced 2025-09-02 18:18:30 +02:00
Added od cheatsheet
This commit is contained in:
11
cheatsheets/od
Normal file
11
cheatsheets/od
Normal file
@ -0,0 +1,11 @@
|
||||
# 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
|
Reference in New Issue
Block a user