objdump: add Dutch translation (#11776)

pull/23/head
Sebastiaan Speck 2023-12-18 12:55:55 +01:00 committed by GitHub
parent 76dec4d6cd
commit 55970a7e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

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