用find查找/data目錄下,以.txt文件結尾的文件並複製到/tmp下ide
方法一spa
find與|xargs是黃金搭檔,-t參數指定目標目錄it
[root@qyn ~]# find /data/ -type f -name"*.txt" | xargs cp -t /tmpclass
方法二方法
{}大括號裏的內容爲find命令找到的結果im
[root@qyn ~]# find /data/ -type f -name"*.txt" -exec cp {} /tmp \;di
方法三文件
$()=` ` 存放命令的執行結果view
[root@qyn ~]# cp $(find /data/ -type f -name"*.txt") /tmpvi
方法四
-i參數指定找到的結果放到{}中
[root@qyn ~]# find/data/ -type f -name "*.txt" | xargs -i cp{} /tmp