mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 08:35:31 +02:00
paste, sum, which: update Dutch translation (#16668)
This commit is contained in:
parent
c61728e92f
commit
17f11468f1
4 changed files with 7 additions and 7 deletions
|
@ -5,11 +5,11 @@
|
|||
|
||||
- Voeg alle regels samen tot één enkele regel, met TAB als scheidingsteken:
|
||||
|
||||
`paste -s {{pad/naar/bestand}}`
|
||||
`paste {{[-s|--serial]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Voeg alle regels samen tot één enkele regel, met het opgegeven scheidingsteken:
|
||||
|
||||
`paste -s -d {{scheidingsteken}} {{pad/naar/bestand}}`
|
||||
`paste {{[-sd|--serial --delimiters]}} {{scheidingsteken}} {{pad/naar/bestand}}`
|
||||
|
||||
- Voeg twee bestanden zij aan zij samen, elk in zijn kolom, met TAB als scheidingsteken:
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
|||
|
||||
- Voeg twee bestanden zij aan zij samen, elk in zijn kolom, met het opgegeven scheidingsteken:
|
||||
|
||||
`paste -d {{scheidingsteken}} {{pad/naar/bestand1}} {{pad/naar/bestand2}}`
|
||||
`paste {{[-d|--delimiters]}} {{scheidingsteken}} {{pad/naar/bestand1}} {{pad/naar/bestand2}}`
|
||||
|
||||
- Voeg twee bestanden samen, met afwisselend toegevoegde regels:
|
||||
|
||||
`paste -d '\n' {{pad/naar/bestand1}} {{pad/naar/bestand2}}`
|
||||
`paste {{[-d|--delimiters]}} '\n' {{pad/naar/bestand1}} {{pad/naar/bestand2}}`
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
|
||||
- Bereken een checksum met een System V-compatibel algoritme en 512-byte blokken:
|
||||
|
||||
`sum --sysv {{pad/naar/bestand}}`
|
||||
`sum {{[-s|--sysv]}} {{pad/naar/bestand}}`
|
||||
|
|
|
@ -9,4 +9,4 @@
|
|||
|
||||
- Als er meerdere uitvoerbare bestanden zijn die overeenkomen, toon ze allemaal:
|
||||
|
||||
`which -a {{uitvoerbaar_bestand}}`
|
||||
`which {{[-a|--all]}} {{uitvoerbaar_bestand}}`
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
- Join all the lines into a single line, using the specified delimiter:
|
||||
|
||||
`paste {{[-s|--serial]}} {{[-d|--delimiters]}} {{delimiter}} {{path/to/file}}`
|
||||
`paste {{[-sd|--serial --delimiters]}} {{delimiter}} {{path/to/file}}`
|
||||
|
||||
- Merge two files side by side, each in its column, using TAB as delimiter:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue