mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-26 19:53:04 +00:00
Update cheatsheets
This commit is contained in:
12
tldr/objdump
12
tldr/objdump
@@ -10,20 +10,20 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Display the file header information:
|
||||
|
||||
`objdump -f {{binary}}`
|
||||
`objdump -f {{path/to/binary}}`
|
||||
|
||||
- Display all header information:
|
||||
|
||||
`objdump -x {{binary}}`
|
||||
`objdump -x {{path/to/binary}}`
|
||||
|
||||
- Display the disassembled output of executable sections:
|
||||
|
||||
`objdump -d {{binary}}`
|
||||
`objdump -d {{path/to/binary}}`
|
||||
|
||||
- Display the disassembled executable sections in intel syntax:
|
||||
- Display the disassembled executable sections in Intel syntax:
|
||||
|
||||
`objdump -M intel -d {{binary}}`
|
||||
`objdump -M intel -d {{path/to/binary}}`
|
||||
|
||||
- Display a complete binary hex dump of all sections:
|
||||
|
||||
`objdump -s {{binary}}`
|
||||
`objdump -s {{path/to/binary}}`
|
||||
|
||||
Reference in New Issue
Block a user