od: add Dutch translation and fix placeholders (#13155)

pull/28/head
Sebastiaan Speck 2024-06-26 17:22:42 +02:00 committed by GitHub
parent deb53960c2
commit d5868910de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 30 additions and 1 deletions

29
pages.nl/common/od.md Normal file
View File

@ -0,0 +1,29 @@
# od
> Toon bestandsinhoud in octale, decimale of hexadecimale notatie.
> Toon optioneel de byte-offsets en/of de afdrukbare weergave voor elke regel.
> Meer informatie: <https://www.gnu.org/software/coreutils/od>.
- Toon bestand met de standaardinstellingen: octale notatie, 8 bytes per regel, byte-offsets in octale notatie en dubbele regels vervangen door `*`:
`od {{pad/naar/bestand}}`
- Toon bestand in uitgebreide modus, d.w.z. zonder dubbele regels te vervangen door `*`:
`od -v {{pad/naar/bestand}}`
- Toon bestand in hexadecimale notatie (2-byte eenheden), met byte-offsets in decimale notatie:
`od --format={{x}} --address-radix={{d}} -v {{pad/naar/bestand}}`
- Toon bestand in hexadecimale notatie (1-byte eenheden) en 4 bytes per regel:
`od --format={{x1}} --width={{4}} -v {{pad/naar/bestand}}`
- Toon bestand in hexadecimale notatie samen met de tekenweergave, en toon geen byte-offsets:
`od --format={{xz}} --address-radix={{n}} -v {{pad/naar/bestand}}`
- Lees slechts 100 bytes van een bestand vanaf de 500ste byte:
`od --read-bytes 100 --skip-bytes=500 -v {{pad/naar/bestand}}`

View File

@ -26,4 +26,4 @@
- Read only 100 bytes of a file starting from the 500th byte:
`od --read-bytes {{100}} --skip-bytes={{500}} -v {{path/to/file}}`
`od --read-bytes 100 --skip-bytes=500 -v {{path/to/file}}`