1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 15:15:24 +02:00

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