xargs (1) - 从标准输入重建并执行命令行
find . -name "*.bak" | xargs rm -f
find. -name "*.txt" | xargs -I {} mv {} {}.bak