tldr/pages/common/objdump.md

16 lines
280 B
Markdown
Raw Normal View History

2017-09-01 10:42:44 +03:00
# objdump
2017-09-01 21:59:41 +03:00
> View information about object files.
2017-09-01 10:42:44 +03:00
- Display the file header information:
`objdump -f {{binary}}`
- Display the dis-assembled output of executable sections:
`objdump -d {{binary}}`
2017-09-01 21:59:41 +03:00
- Display a complete binary hex dump of all sections:
2017-09-01 10:42:44 +03:00
`objdump -s {{binary}}`