From 6342a7df93c1b09666bf6144d375323879676af0 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 13 Aug 2024 10:19:47 +0200 Subject: [PATCH] cat: add Dutch translation (#13382) --- pages.nl/linux/cat.md | 28 ++++++++++++++++++++++++++++ pages.nl/osx/cat.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 pages.nl/linux/cat.md create mode 100644 pages.nl/osx/cat.md diff --git a/pages.nl/linux/cat.md b/pages.nl/linux/cat.md new file mode 100644 index 0000000000..ccbb50418f --- /dev/null +++ b/pages.nl/linux/cat.md @@ -0,0 +1,28 @@ +# cat + +> Print en concateneer bestanden. +> Meer informatie: . + +- 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}}` diff --git a/pages.nl/osx/cat.md b/pages.nl/osx/cat.md new file mode 100644 index 0000000000..0c3c176e28 --- /dev/null +++ b/pages.nl/osx/cat.md @@ -0,0 +1,32 @@ +# cat + +> Print en concateneer bestanden. +> Meer informatie: . + +- 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}}` + +- Kopieer de inhoud van een bestand naar een uitvoerbestand zonder buffering: + +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- Schrijf `stdin` naar een bestand: + +`cat - > {{pad/naar/bestand}}` + +- Nummer 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}}`