objdump: add page

coverage
Agniva De Sarker 2017-09-01 13:12:44 +05:30
parent 92b64fef19
commit 716afd19e1
1 changed files with 15 additions and 0 deletions

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}}`