1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.nl/common/objdump.md

25 lines
494 B
Markdown
Raw Permalink Normal View History

# objdump
> Bekijk informatie over object bestanden.
> Meer informatie: <https://manned.org/objdump>.
- Toon de bestand header informatie:
`objdump -f {{binary}}`
- Toon alle header informatie:
`objdump -x {{binary}}`
- Toon de gedemonteerde uitvoer van uitvoerbare secties:
`objdump -d {{binary}}`
- Toon de gedemonteerde uitvoer van uitvoerbare secties in intel syntax:
`objdump -M intel -d {{binary}}`
- Toon een complete binary hex dump van alle secties:
`objdump -s {{binary}}`