1. 程式人生 > >shell 命令目錄檔案4種複製方法

shell 命令目錄檔案4種複製方法

把/oldboy目錄及子目錄下面 所有以.sh結尾的檔案複製到 /tmp下面

手續建立環境:

mkdir -p /oldboy/test
cd /oldboy
echo "oldboy">test/del.sh
echo "oldboy">test.sh
echo "oldboy">t.sh
touch oldboy.txt
touch alex.txt

這裡寫圖片描述
這裡寫圖片描述
接下來進行實際複製:

  • 方法1:cp +$()
cp $(find /oldboy/ -type f -name "*.sh")  /tm
  • 方法2:find +|xargs -i
find -type f -name "*.sh" | xargs -i
cp {} /tmp

主要使用了xargs的 -i 引數 配合使用{} 完成要求

  • 方法3:find -exec
find -type f -name "*.sh" -exec cp {} /tmp \;

使用了find 的 -exec引數 也是通過使用{} 完成要求

  • 方法4: find +|xargs cp -t
find -type f -name "*.sh" | xargs cp -t /tmp

摘自:https://blog.csdn.net/jiedao_liyk/article/details/77935731