1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-08 16:35:50 +02:00

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