cat: add Dutch translation (#13382)

This commit is contained in:
Sebastiaan Speck
2024-08-13 10:19:47 +02:00
committed by GitHub
parent 00e87bcfff
commit 6342a7df93
2 changed files with 60 additions and 0 deletions

28
pages.nl/linux/cat.md Normal file
View File

@@ -0,0 +1,28 @@
# cat
> Print en concateneer bestanden.
> Meer informatie: <https://www.gnu.org/software/coreutils/cat>.
- Print de inhoud van een bestand naar `stdout`:
`cat {{pad/naar/bestand}}`
- Concateneer meerdere bestanden in een uitvoerbestand:
`cat {{pad/naar/bestand1 pad/naar/bestand2 ...}} > {{pad/naar/uitvoerbestand}}`
- Voeg meerdere bestanden toe aan een uitvoerbestand:
`cat {{pad/naar/bestand1 pad/naar/bestand2 ...}} >> {{pad/naar/uitvoerbestand}}`
- Schrijf `stdin` naar een bestand:
`cat - > {{pad/naar/bestand}}`
- [n]ummer alle uitvoerregels:
`cat -n {{pad/naar/bestand}}`
- Toon niet-afdrukbare en witruimtekarakters (met `M-` prefix als niet-ASCII):
`cat -v -t -e {{pad/naar/bestand}}`