find命令結合cp的使用


find查找/data目錄下,以.txt文件結尾的文件並複製到/tmpide

方法一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

相關文章
相關標籤/搜索