mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-02 12:15:24 +02:00
pages.nl/common/f*: update Dutch translation (#16336)
This commit is contained in:
parent
4b22bf6299
commit
1afdfaba54
2 changed files with 8 additions and 8 deletions
|
@ -10,20 +10,20 @@
|
|||
|
||||
- Zoek in bestanden, maar alleen in regels die volledig overeenkomen:
|
||||
|
||||
`fgrep -x {{zoek_string}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||
`fgrep {{[-x|--line-regexp]}} {{zoek_string}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||
|
||||
- Tel het aantal regels in een bestand die overeenkomen met de opgegeven string:
|
||||
|
||||
`fgrep -c {{zoek_string}} {{pad/naar/bestand}}`
|
||||
`fgrep {{[-c|--count]}} {{zoek_string}} {{pad/naar/bestand}}`
|
||||
|
||||
- Toon de regelnummers in het bestand samen met de regel die overeenkomt:
|
||||
|
||||
`fgrep -n {{zoek_string}} {{pad/naar/bestand}}`
|
||||
`fgrep {{[-n|--line-number]}} {{zoek_string}} {{pad/naar/bestand}}`
|
||||
|
||||
- Toon alle regels behalve de regels die de string bevatten:
|
||||
|
||||
`fgrep -v {{zoek_string}} {{pad/naar/bestand}}`
|
||||
`fgrep {{[-v|--invert-match]}} {{zoek_string}} {{pad/naar/bestand}}`
|
||||
|
||||
- Toon bestandsnamen waarvan de inhoud minimaal één keer overeenkomt met de string:
|
||||
|
||||
`fgrep -l {{zoek_string}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||
`fgrep {{[-l|--files-with-matches]}} {{zoek_string}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
|
||||
|
|
|
@ -9,12 +9,12 @@
|
|||
|
||||
- Herformatteer een bestand met uitvoerregels van (hoogstens) `n` tekens:
|
||||
|
||||
`fmt -w {{n}} {{pad/naar/bestand}}`
|
||||
`fmt {{[-w|--width]}} {{n}} {{pad/naar/bestand}}`
|
||||
|
||||
- Herformatteer een bestand zonder regels die korter zijn dan de opgegeven breedte samen te voegen:
|
||||
|
||||
`fmt -s {{pad/naar/bestand}}`
|
||||
`fmt {{[-s|--split-only]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Herformatteer een bestand met uniforme spatiëring (1 spatie tussen woorden en 2 spaties tussen alinea's):
|
||||
|
||||
`fmt -u {{pad/naar/bestand}}`
|
||||
`fmt {{[-u|--uniform-spacing]}} {{pad/naar/bestand}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue