我想复制一个目录中的所有文件,除了特定子目录中的一些文件。 我注意到cp命令没有——exclude选项。 那么,我怎么才能做到呢?


当前回答

rsync

rsync -r --verbose --exclude 'exclude_pattern' ./* /to/where/

首先用-n选项试试,看看会复制什么

其他回答

Rsync实际上相当棘手。要做多次测试才能起作用

假设你想复制/var/www/html到/var/www/dev,但可能由于/var/www/html/site/video/目录的大小需要排除。命令如下:

Rsync -av—排除'sites/video' /var/www/html/ /var/www/dev

一些警告:

源文件中的最后一个斜杠/是必须的,否则它也会复制源目录,而不是它的内容,变成/var/www/dev/html/xxxx,这可能不是你想要的。 ——exclude路径直接相对于源。即使你使用完全的绝对路径,它也不会起作用。 -v表示详细,-a表示存档模式这意味着你想要递归,想要保存几乎所有东西。

为什么要使用rsync,当你可以:

find . -type f -not -iname '*/not-from-here/*' -exec cp '{}' '/dest/{}' ';'

这假设目标目录结构与源目录结构相同。

rsync

rsync -r --verbose --exclude 'exclude_pattern' ./* /to/where/

首先用-n选项试试,看看会复制什么

mv tobecopied/tobeexcluded .
cp -r tobecopied dest/
mv tobeexcluded tobecopied/

我猜你用的是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的第一个参数