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

Remove unnecessary braces

This commit is contained in:
Sahil Bajaj 2017-12-10 15:43:26 +08:00 committed by GitHub
parent b89cd0bab3
commit 17927812a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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):