我想复制一个目录中的所有文件,除了特定子目录中的一些文件。 我注意到cp命令没有——exclude选项。 那么,我怎么才能做到呢?
当前回答
它相对于源目录。 这将排除目录源/。Git被复制。
rsync -r --exclude '.git' source target
其他回答
它相对于源目录。 这将排除目录源/。Git被复制。
rsync -r --exclude '.git' source target
Rsync又快又简单:
rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude
你可以使用-排除多次。
rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude --exclude anotherfoldertoexclude
注意——exclude选项后的目录thefoldertoexclude是相对于源文件夹的,即:sourcefolder/thefoldertoexclude。
此外,您还可以添加-n进行演练,以查看在执行实际操作之前将复制什么,如果一切正常,则从命令行中删除-n。
我猜你用的是bash或dash。这样能行吗?
shopt -s extglob # sets extended pattern matching options in the bash shell
cp $(ls -laR !(subdir/file1|file2|subdir2/file3)) destination
执行ls,排除你不想要的文件,并使用它作为cp的第一个参数
只需将其临时移动到一个隐藏目录中(如果需要的话,可以重新命名它)。
mkdir .hiddendir
cp * .hiddendir -R
mv .hiddendir realdirname
晚了10年。感谢Linus Kleen。
我讨厌rsync!,)那么为什么不用find和cp呢?用这个答案还可以用mkdir创建一个不存在的文件夹结构。
CD /source_folder/ &&查找。-type d -not -path '*/not-from here/*' -print -exec mkdir -p '/destination_folder/{}' \;
CD /source_folder/ &&查找。-type f -not -path '*/not-from here/*' -print -exec cp -au '{}' '/destination_folder/{}' \;
看起来cd ìs必须连接相对路径与find。
Mkdir -p将创建所有子文件夹,并且当文件夹已经存在时不会报错。
侯斯顿,我们还有下一个问题。如果有人创建了一个新文件夹,中间有一个新文件,会发生什么情况?正确:对于这些新文件,它将失败。(解决方案:再运行一次!把所有东西都放在一个find命令中的解决方案似乎很难。
清理:https://unix.stackexchange.com/q/627218/239596