Skip to content

Commit

Permalink
tac: add Dutch translation (#13068)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanspeck committed Jun 19, 2024
1 parent ea21030 commit 0198de5
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pages.nl/common/tac.md
Original file line number Diff line number Diff line change
@@ -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 changes: 25 additions & 0 deletions pages.nl/linux/tac.md
Original file line number Diff line number Diff line change
@@ -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 ...}}`

0 comments on commit 0198de5

Please sign in to comment.