1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 15:55:26 +02:00

hexdump: add Dutch translation (#16618)

This commit is contained in:
Sebastiaan Speck 2025-05-29 08:38:08 +02:00 committed by GitHub
parent c0a064db66
commit caecdd5528
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
pages.nl/linux/hexdump.md Normal file
View file

@ -0,0 +1,20 @@
# hexdump
> Een ASCII, decimale, hexadecimale, octale dump.
> Meer informatie: <https://manned.org/hexdump>.
- Druk de hexadecimale weergave van een bestand af, waarbij dubbele regels worden vervangen door '*':
`hexdump {{pad/naar/bestand}}`
- Toon de invoer offset in hexadecimaal en zijn ASCII representatie in twee kolommen:
`hexdump {{[-C|--canonical]}} {{pad/naar/bestand}}`
- Geef de hexadecimale weergave van een bestand weer, maar interpreteer alleen n bytes van de invoer:
`hexdump {{[-C|--canonical]}} {{[-n|--lengte]}} {{aantal_bytes}} {{pad/naar/bestand}}`
- Vervang dubbele regels niet door '*':
`hexdump {{[-v|--no-squeezing]}} {{path/to/file}}`