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-05-16 13:47:00 +01:00
|
|
|
- Specific example: delete all files that start with 'M':
|
|
|
|
|
|
|
|
`find . -name 'M*' | xargs rm`
|
|
|
|
|
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-05-16 07:51:34 +01:00
|
|
|
- Insert arguments at chosen position, using '%' as the placeholder marker:
|
2014-03-12 17:25:30 +00:00
|
|
|
|
2016-05-16 07:51:34 +01:00
|
|
|
`{{arguments}} | xargs -I '%' {{command}} % {{extra_arguments}}`
|