1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/objdump.md

25 lines
488 B
Markdown
Raw Normal View History

2017-09-01 13:12:44 +05:30
# objdump
2017-09-02 00:29:41 +05:30
> View information about object files.
> More information: <https://manned.org/objdump>.
2017-09-01 13:12:44 +05:30
- Display the file header information:
`objdump -f {{binary}}`
2023-08-29 08:59:55 +02:00
- Display all header information:
`objdump -x {{binary}}`
- Display the disassembled output of executable sections:
2017-09-01 13:12:44 +05:30
`objdump -d {{binary}}`
- Display the disassembled executable sections in intel syntax:
`objdump -M intel -d {{binary}}`
2017-09-02 00:29:41 +05:30
- Display a complete binary hex dump of all sections:
2017-09-01 13:12:44 +05:30
`objdump -s {{binary}}`