gpt4 book ai didi

linux - 为什么它只复制一个文件

转载 作者:太空宇宙 更新时间:2023-11-04 09:46:02 25 4
gpt4 key购买 nike

它只复制一个文件。

find ../../ -type f -name <filename.PDF> -print0 | xargs -0 -I file cp -rv file --target-directory=directory name with path

为什么它只复制一个文件。我想复制所有具有相同名称但创建于不同日期和不同文件夹的文件。

最佳答案

尝试这样的事情:

cnt=1
find ../../ -type f -name filename.PDF |
while read fname
do
f=$(basename $fname)
cp $file /target/directory/${f}.${cnt}
cnt=$(( $cnt + 1 ))
done

给每个目标文件一个唯一的编号。

关于linux - 为什么它只复制一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16212575/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com