2014-03-12 17:25:30 +00:00
|
|
|
# xargs
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Execute a command with piped arguments.
|
2014-03-12 17:25:30 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Main use:
|
2014-03-12 17:25:30 +00:00
|
|
|
|
|
|
|
`{{arguments}} | xargs {{command}}`
|
|
|
|
|
2016-01-16 14:12:05 +00:00
|
|
|
- Handle whitespace in arguments:
|
2014-03-12 17:25:30 +00:00
|
|
|
|
|
|
|
`{{arguments_null_terminated}} | xargs -0 {{command}}`
|
|
|
|
|
2016-01-29 13:30:13 +00:00
|
|
|
- Delete all files that start with 'M':
|
2014-03-12 17:25:30 +00:00
|
|
|
|
2016-02-05 20:48:05 +00:00
|
|
|
`find . -name 'M*' | xargs rm`
|
2016-01-12 21:01:57 +00:00
|
|
|
|
2016-02-16 07:27:16 +00:00
|
|
|
- Insert arguments at chosen position:
|
2014-03-12 17:25:30 +00:00
|
|
|
|
2016-02-16 07:27:16 +00:00
|
|
|
`{{arguments}} | xargs -I piped_arguments {{command}} piped_arguments {{rest_of_arguments}}`
|