xargs
Build and execute commands from standard input
xargs reads stdin and passes each item as an argument to a command. find /tmp -name '*.log' | xargs rm deletes all .log files found by find.
Example
$ find /tmp -name '*.tmp' | xargs rm -f
(all .tmp files deleted)
Tip: Type it yourself in the terminal below - reading is not the same as doing.