From 77c98963c86b8461d26ef761ce6f452f57d45df2 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 13 Aug 2024 00:35:07 +0200 Subject: [PATCH] xargs: update Dutch translation (#13347) --- pages.nl/common/xargs.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages.nl/common/xargs.md b/pages.nl/common/xargs.md index e7dea558d..497c72c70 100644 --- a/pages.nl/common/xargs.md +++ b/pages.nl/common/xargs.md @@ -16,6 +16,10 @@ `find . -name '*.backup' -print0 | xargs -0 rm -v` +- Voer het commando eenmaal per argument uit: + +`{{argumenten_bron}} | xargs -n1 {{commando}}` + - Voer het commando één keer uit voor elke invoerregel, waarbij elke plaatsaanduiding (hier gemarkeerd als `_`) wordt vervangen door de invoerregel: `{{argumenten_bron}} | xargs -I _ {{commando}} _ {{optionele_extra_argumenten}}`