mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-29 18:15:31 +02:00
tac: add Dutch translation (#13068)
This commit is contained in:
parent
ea21030214
commit
0198de5f17
2 changed files with 50 additions and 0 deletions
25
pages.nl/common/tac.md
Normal file
25
pages.nl/common/tac.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# tac
|
||||||
|
|
||||||
|
> Toon en voeg bestanden samen met regels in omgekeerde volgorde.
|
||||||
|
> Bekijk ook: `cat`.
|
||||||
|
> Meer informatie: <https://www.gnu.org/software/coreutils/tac>.
|
||||||
|
|
||||||
|
- Voeg specifieke bestanden samen in omgekeerde volgorde:
|
||||||
|
|
||||||
|
`tac {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||||
|
|
||||||
|
- Toon `stdin` in omgekeerde volgorde:
|
||||||
|
|
||||||
|
`{{cat pad/naar/bestand}} | tac`
|
||||||
|
|
||||||
|
- Gebruik een specifiek [s]cheidingsteken:
|
||||||
|
|
||||||
|
`tac -s {{scheidingsteken}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||||
|
|
||||||
|
- Gebruik een specifieke [r]egex als [s]cheidingsteken:
|
||||||
|
|
||||||
|
`tac -r -s {{scheidingsteken}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||||
|
|
||||||
|
- Gebruik een scheidingsteken vóór ([b]) elk bestand:
|
||||||
|
|
||||||
|
`tac -b {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
25
pages.nl/linux/tac.md
Normal file
25
pages.nl/linux/tac.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# tac
|
||||||
|
|
||||||
|
> Toon en voeg bestanden samen met regels in omgekeerde volgorde.
|
||||||
|
> Bekijk ook: `cat`.
|
||||||
|
> Meer informatie: <https://www.gnu.org/software/coreutils/tac>.
|
||||||
|
|
||||||
|
- Voeg specifieke bestanden samen in omgekeerde volgorde:
|
||||||
|
|
||||||
|
`tac {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||||
|
|
||||||
|
- Toon `stdin` in omgekeerde volgorde:
|
||||||
|
|
||||||
|
`{{cat pad/naar/bestand}} | tac`
|
||||||
|
|
||||||
|
- Gebruik een specifiek scheidingsteken:
|
||||||
|
|
||||||
|
`tac --separator {{,}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||||
|
|
||||||
|
- Gebruik een specifieke regex als scheidingsteken:
|
||||||
|
|
||||||
|
`tac --regex --separator {{[,;]}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||||
|
|
||||||
|
- Gebruik een scheidingsteken vóór elk bestand:
|
||||||
|
|
||||||
|
`tac --before {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
Loading…
Add table
Reference in a new issue