mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-07 00:53:37 +02:00
15 lines
253 B
Markdown
15 lines
253 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':
|
|
|
|
`ls M* | xargs rm`
|