cat, cksum, comm, cut, chcon, csplit: add Dutch translation (#11999)
Co-authored-by: Leon <leonvsc@users.noreply.github.com>
This commit is contained in:
24
pages.nl/common/cat.md
Normal file
24
pages.nl/common/cat.md
Normal 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}}`
|
Reference in New Issue
Block a user