1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-01 11:35:30 +02:00
tldr/pages/common/xargs.md
2016-02-05 20:48:05 +00:00

15 lines
265 B
Markdown

# 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':
`find . -name 'M*' | xargs rm`