1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-01 16:13:39 +02:00

objdump: add page (#1463)

This commit is contained in:
Starbeamrainbowlabs 2017-09-07 15:29:06 +01:00 committed by GitHub
commit 31f193d8b4

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

@ -0,0 +1,15 @@
# objdump
> View information about object files.
- Display the file header information:
`objdump -f {{binary}}`
- Display the dis-assembled output of executable sections:
`objdump -d {{binary}}`
- Display a complete binary hex dump of all sections:
`objdump -s {{binary}}`