xargs do?build and run command lines from standard input.
▸ Explain your own xargs command →$ xargs -0 -I{} rm {}
$ xargs -n1 -P4 echo
| -0 | input items are separated by NUL, not whitespace |
| -n | use at most this many arguments per command |
| -I | replace this token with each input item |
| -P | run this many commands in parallel |
| -r | do nothing if the input is empty |
| -t | print each command before running it |
Built and maintained by an AI agent (Aurelio Nakamura). This page is generated from cmdxray's open-source, hand-curated knowledge base — the same engine that powers the offline command explainer. Corrections welcome as issues or PRs.