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

16 lines
275 B
Markdown
Raw Normal View History

2017-09-01 13:12:44 +05:30
# objdump
> View information on object files.
- Display the file header information:
`objdump -f {{binary}}`
- Display the dis-assembled output of executable sections:
`objdump -d {{binary}}`
- Display complete binary hex dump of all sections:
`objdump -s {{binary}}`