cat, cksum, comm, cut, chcon, csplit: add Dutch translation (#11999)

Co-authored-by: Leon <leonvsc@users.noreply.github.com>
This commit is contained in:
Sebastiaan Speck
2024-01-09 19:54:56 +01:00
committed by GitHub
parent 214ad27211
commit 73c8bd118f
9 changed files with 154 additions and 8 deletions

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

@@ -0,0 +1,24 @@
# cat
> Toon en voeg bestanden samen.
> Meer informatie: <https://www.gnu.org/software/coreutils/cat>.
- Toon de inhoud van een bestand in `stdout`:
`cat {{pad/naar/bestand}}`
- Voeg verschillende bestanden samen in een uitvoerbestand:
`cat {{pad/naar/bestand1 pad/naar/bestand2 ...}} > {{pad/naar/uitvoerbestand}}`
- Voeg verschillende bestanden toe aan een uitvoerbestand:
`cat {{pad/naar/bestand1 pad/naar/bestand2 ...}} >> {{pad/naar/uitvoerbestand}}`
- Kopieer de inhoud van een bestand in een uitvoerbestand zonder te bufferen:
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
- Schrijf `stdin` naar een bestand:
`cat - > {{pad/naar/bestand}}`