paste: add Dutch translation and fix placeholders (#13154)

This commit is contained in:
Sebastiaan Speck 2024-06-26 17:21:16 +02:00 committed by GitHub
parent c2e27c9c73
commit deb53960c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 3 deletions

24
pages.nl/common/paste.md Normal file
View File

@ -0,0 +1,24 @@
# paste
> Voeg regels van bestanden samen.
> Meer informatie: <https://www.gnu.org/software/coreutils/paste>.
- Voeg alle regels samen tot één enkele regel, met TAB als scheidingsteken:
`paste -s {{pad/naar/bestand}}`
- Voeg alle regels samen tot één enkele regel, met het opgegeven scheidingsteken:
`paste -s -d {{scheidingsteken}} {{pad/naar/bestand}}`
- Voeg twee bestanden zij aan zij samen, elk in zijn kolom, met TAB als scheidingsteken:
`paste {{pad/naar/bestand1}} {{pad/naar/bestand2}}`
- Voeg twee bestanden zij aan zij samen, elk in zijn kolom, met het opgegeven scheidingsteken:
`paste -d {{scheidingsteken}} {{pad/naar/bestand1}} {{pad/naar/bestand2}}`
- Voeg twee bestanden samen, met afwisselend toegevoegde regels:
`paste -d '\n' {{pad/naar/bestand1}} {{pad/naar/bestand2}}`

View File

@ -13,12 +13,12 @@
- Merge two files side by side, each in its column, using TAB as delimiter:
`paste {{file1}} {{file2}}`
`paste {{path/to/file1}} {{path/to/file2}}`
- Merge two files side by side, each in its column, using the specified delimiter:
`paste -d {{delimiter}} {{file1}} {{file2}}`
`paste -d {{delimiter}} {{path/to/file1}} {{path/to/file2}}`
- Merge two files, with lines added alternatively:
`paste -d '\n' {{file1}} {{file2}}`
`paste -d '\n' {{path/to/file1}} {{path/to/file2}}`