objdump: move to common (#2627)

This commit is contained in:
Guilherme Leobas
2018-11-29 10:41:37 +01:00
committed by Owen Voke
parent e7ad6644b2
commit 571e44e3e1

15
pages/common/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}}`