xargs: update Dutch translation (#13347)

This commit is contained in:
Sebastiaan Speck 2024-08-13 00:35:07 +02:00 committed by GitHub
parent 21f1a27dca
commit 77c98963c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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}}`