mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
cat: add Dutch translation (#13382)
This commit is contained in:
parent
00e87bcfff
commit
6342a7df93
2 changed files with 60 additions and 0 deletions
28
pages.nl/linux/cat.md
Normal file
28
pages.nl/linux/cat.md
Normal 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}}`
|
32
pages.nl/osx/cat.md
Normal file
32
pages.nl/osx/cat.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# cat
|
||||
|
||||
> Print en concateneer bestanden.
|
||||
> Meer informatie: <https://keith.github.io/xcode-man-pages/cat.1.html>.
|
||||
|
||||
- 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}}`
|
Loading…
Add table
Reference in a new issue