mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
objdump: add Dutch translation (#11776)
This commit is contained in:
parent
76dec4d6cd
commit
55970a7e21
1 changed files with 24 additions and 0 deletions
24
pages.nl/common/objdump.md
Normal file
24
pages.nl/common/objdump.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue