Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-07 00:23:48 +00:00
parent 10dbf8b0c0
commit 22bb163ffa
20 changed files with 143 additions and 49 deletions

View File

@@ -22,9 +22,13 @@ source: https://github.com/tldr-pages/tldr.git
- Display the disassembled executable sections in Intel syntax:
`objdump {{[-M|--disassembler-options]}} intel {{[-d|--disassemble]}} {{path/to/binary}}`
`objdump {{[-d|--disassemble]}} {{path/to/binary}} {{[-M|--disassembler-options]}} intel`
- Display the symbol table:
- Display the disassembled executable sections with jump visualizations and syntax highlighting:
`objdump {{[-d|--disassemble]}} {{path/to/binary}} --visualize-jumps={{color|extended-color}} --disassembler-color={{color|extended-color}}`
- Display the symbol [t]able:
`objdump {{[-t|--syms]}} {{path/to/binary}}`