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


当前回答

Rsync又快又简单:

rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude

你可以使用-排除多次。

rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude --exclude anotherfoldertoexclude

注意——exclude选项后的目录thefoldertoexclude是相对于源文件夹的,即:sourcefolder/thefoldertoexclude。

此外,您还可以添加-n进行演练,以查看在执行实际操作之前将复制什么,如果一切正常,则从命令行中删除-n。

其他回答

ls -I "filename1" -I "filename2" | xargs cp -rf -t destdir 

第一部分显示所有文件,但使用flag -I隐藏特定文件。ls的输出作为第二部分的标准输入。Xargs从标准输入构建并执行命令cp -rf -t destdir。标志-r表示递归复制目录,-f表示强制复制文件,将覆盖destdir中的文件,-t指定复制到的目标目录。

另一个更简单的选项是安装并使用rsync,它有一个——exclude-dir选项,可以用于本地和远程文件。

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

这是对Linus Kleen的回答的修改。他的回答对我没用,因为会有。添加在cp不喜欢的文件路径前面(路径看起来像source/.destination/file)。

这个命令对我很管用:

找到。-type f -not -path '*/ exclude -path/*' -exec cp——parents '{}' '/destination/' \;

——parents命令保留目录结构。

Rsync无法使用。下面是一个可行的替代方案。

tar -cf - --exclude='./folder' --exclude='./file.tar' ./source_directory | tar -xf - -C ./destination_directory