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