echo "--help"|cat echo "--help"|xargs cat
###常見用法: 1.命令行
find . -name "*.txt" | xargs -I {} echo {}
在當前目錄查找以 .txt 結尾的文件,並打印出來。code
find dir1/ -name "*.txt" | xargs -I {} mv {} dir2/
在當前 dir1 目錄查找以 .txt 結尾的文件,並移動到 dir2 中。移動