xargs: remove unnecessary braces (#1780)

coverage
Starbeamrainbowlabs 2017-12-12 19:55:23 +00:00 committed by GitHub
commit 6140bed22c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
- Delete all files with a `.backup` extension:
`{{find . -name '*.backup'}} | xargs {{rm -v}}`
`find . -name {{'*.backup'}} | xargs rm -v`
- Convert newlines in the input into NUL (`\0`) characters, and split on those only (useful if the input to xargs contains spaces):