tldr/pages/linux/xargs.md

16 lines
318 B
Markdown
Raw Normal View History

2014-03-12 17:25:30 +00:00
# xargs
> Execute a command with piped arguments.
2014-03-12 17:25:30 +00:00
- Main use:
2014-03-12 17:25:30 +00:00
`{{arguments}} | xargs {{command}}`
- Handle whitespace in arguments:
2014-03-12 17:25:30 +00:00
`{{arguments_null_terminated}} | xargs -0 {{command}}`
- Example: list unneeded packages with deborphan and remove them with apt-get:
2014-03-12 17:25:30 +00:00
`sudo deborphan | xargs sudo apt-get remove`