objdump: add page

This commit is contained in:
Agniva De Sarker
2017-09-01 13:12:44 +05:30
parent 92b64fef19
commit 716afd19e1

15
pages/linux/objdump.md Normal file
View File

@@ -0,0 +1,15 @@
# 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}}`