Pass stdin items as arguments to another command.
Section: Searching and Pattern Matching
Build command lines from stdin
bash
bash
find . -name '*.tmp' -print0 | xargs -0 rm -fExplanation
Essential when combining `find` with bulk operations safely.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Searching and Pattern Matching