mirror of https://github.com/CrimsonTome/tldr.git
od: add Dutch translation and fix placeholders (#13155)
parent
deb53960c2
commit
d5868910de
|
@ -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}}`
|
|
@ -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}}`
|
||||
|
|
Loading…
Reference in New Issue