xargs - Serbipunk/notes GitHub Wiki
echo xxx_file_list.txt | xargs -i echo cp {} {}.back
find -name "debug_markdown*" -print0 | xargs -0 du -h
find ~ -name "core.txt" | xargs du -sh
find . | grep "FooBar" | tr \\n \\0 | xargs -0 -I{} cp "{}" ~/foo/bar
copy found files
find /path/to/search/ -type f -name "glob-to-find-files" | xargs cp -t /target/path/