From 1afdfaba54d0afb2eeda242570fd8cfe906f67a9 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 2 May 2025 22:41:01 +0200 Subject: [PATCH] pages.nl/common/f*: update Dutch translation (#16336) --- pages.nl/common/fgrep.md | 10 +++++----- pages.nl/common/fmt.md | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pages.nl/common/fgrep.md b/pages.nl/common/fgrep.md index 93076508ba..c252a072a4 100644 --- a/pages.nl/common/fgrep.md +++ b/pages.nl/common/fgrep.md @@ -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 ...}}` diff --git a/pages.nl/common/fmt.md b/pages.nl/common/fmt.md index 6141f066a8..55d650e67e 100644 --- a/pages.nl/common/fmt.md +++ b/pages.nl/common/fmt.md @@ -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}}`