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
|
|
|
|
2015-12-29 15:58:16 +00:00
|
|
|
`ls M* | xargs rm`
|