gpt4 book ai didi

linux - 从给定列表中复制目标文件夹中存在的 linux 文件

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

如何在 Linux 中复制文件,以便它应该复制所有文件,或者如果所有文件都不存在,那么它应该复制现有文件

目前我正在做如下:

cp {file1,file2} /origin /destination

但是如果一个文件中的任何一个不存在,上面的命令就会出错。我想告诉 cp 复制任何存在的文件,或者如果两者都存在则复制两者。

最佳答案

看看 find 实用程序及其丰富的功能!阅读它的手册:man find

find {file1,file2} -exec cp {} destination/ \;

关于linux - 从给定列表中复制目标文件夹中存在的 linux 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35391986/

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