mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 16:43:08 +00:00
30 lines
621 B
Plaintext
30 lines
621 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# objdump
|
|
|
|
> View information about object files.
|
|
> More information: <https://manned.org/objdump>.
|
|
|
|
- Display the file header information:
|
|
|
|
`objdump -f {{path/to/binary}}`
|
|
|
|
- Display all header information:
|
|
|
|
`objdump -x {{path/to/binary}}`
|
|
|
|
- Display the disassembled output of executable sections:
|
|
|
|
`objdump -d {{path/to/binary}}`
|
|
|
|
- Display the disassembled executable sections in Intel syntax:
|
|
|
|
`objdump -M intel -d {{path/to/binary}}`
|
|
|
|
- Display a complete binary hex dump of all sections:
|
|
|
|
`objdump -s {{path/to/binary}}`
|