253 B
253 B
xargs
Execute a command with piped arguments.
- Main use:
{{arguments}} | xargs {{command}}
- Handle whitespace in arguments:
{{arguments_null_terminated}} | xargs -0 {{command}}
- Delete all files that start with 'M':
ls M* | xargs rm