我想复制目录中的所有文件,但特定子目录中的某些文件除外。我注意到该cp命令没有该--exclude选项。那么,我该如何实现呢?
cp
--exclude
rsync快速简单:
rsync
rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude
您可以--exclude多次使用。
rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude --exclude anotherfoldertoexclude
请注意,选项thefoldertoexclude后的 dir--exclude是相对于 的sourcefolder,即sourcefolder/thefoldertoexclude.
thefoldertoexclude
sourcefolder
sourcefolder/thefoldertoexclude
您还可以添加-n试运行以查看在执行实际操作之前将复制的内容,如果一切正常,请-n从命令行中删除。
-n