mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-14 10:32:11 +03:00
Merge pull request #891 from tldr-pages/xargs
This commit is contained in:
commit
a84285affc
@ -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}}`
|
||||
|
Loading…
Reference in New Issue
Block a user