Merge pull request #891 from tldr-pages/xargs

This commit is contained in:
Waldir Pimenta 2016-06-20 23:44:58 +01:00 committed by GitHub
commit a84285affc

View File

@ -6,14 +6,14 @@
`{{arguments}} | xargs {{command}}`
- Specific example: delete all files that start with 'M':
`find . -name 'M*' | xargs rm`
- Handle whitespace in arguments:
`{{arguments_null_terminated}} | xargs -0 {{command}}`
- Delete all files that start with 'M':
`find . -name 'M*' | xargs rm`
- Insert arguments at chosen position, using '%' as the placeholder marker:
`{{arguments}} | xargs -I % {{command}} % {{extra_arguments}}`
`{{arguments}} | xargs -I '%' {{command}} % {{extra_arguments}}`