Command
xargsExplanation
xargs reads items from standard input and executes commands with those items as arguments.
Examples
Delete all .txt files
find . -name "*.txt" | xargs rmList files from input
echo "file1 file2" | xargs ls -lCopy files to backup
cat files.txt | xargs -I {} cp {} backup/