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

shortened xargs (#878)

rest_of_arguments was misleading
This commit is contained in:
Andrei Cioara 2016-05-16 07:47:07 +01:00 committed by Waldir Pimenta
parent 41d2d7503d
commit eb1f864263

View file

@ -14,6 +14,6 @@
`find . -name 'M*' | xargs rm`
- Insert arguments at chosen position:
- Insert arguments at chosen position, using '%' as the placeholder marker:
`{{arguments}} | xargs -I piped_arguments {{command}} piped_arguments {{rest_of_arguments}}`
`{{arguments}} | xargs -I % {{command}} % {{extra_arguments}}`