Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-23 00:19:06 +00:00
parent 8ba6f7fc9e
commit 94c28849c9
382 changed files with 1183 additions and 1056 deletions

View File

@@ -10,20 +10,20 @@ source: https://github.com/tldr-pages/tldr.git
- Display the file header information:
`objdump -f {{path/to/binary}}`
`objdump {{[-f|--file-headers]}} {{path/to/binary}}`
- Display all header information:
`objdump -x {{path/to/binary}}`
`objdump {{[-x|--all-headers]}} {{path/to/binary}}`
- Display the disassembled output of executable sections:
`objdump -d {{path/to/binary}}`
`objdump {{[-d|--disassemble]}} {{path/to/binary}}`
- Display the disassembled executable sections in Intel syntax:
`objdump -M intel -d {{path/to/binary}}`
`objdump {{[-M|--disassembler-options]}} intel {{[-d|--disassemble]}} {{path/to/binary}}`
- Display a complete binary hex dump of all sections:
`objdump -s {{path/to/binary}}`
`objdump {{[-s|--full-contents]}} {{path/to/binary}}`