xargs: add Dutch translation and fix placeholder (#13161)

This commit is contained in:
Sebastiaan Speck
2024-06-26 17:26:43 +02:00
committed by GitHub
parent 85d51bd7e8
commit 78876b781f
2 changed files with 26 additions and 1 deletions

View File

@@ -14,7 +14,7 @@
- Delete all files with a `.backup` extension (`-print0` uses a null character to split file names, and `-0` uses it as delimiter):
`find . -name {{'*.backup'}} -print0 | xargs -0 rm -v`
`find . -name '*.backup' -print0 | xargs -0 rm -v`
- Execute the command once for each input line, replacing any occurrences of the placeholder (here marked as `_`) with the input line: