我想复制一个目录中的所有文件,除了特定子目录中的一些文件。 我注意到cp命令没有——exclude选项。 那么,我怎么才能做到呢?
当前回答
另一个更简单的选项是安装并使用rsync,它有一个——exclude-dir选项,可以用于本地和远程文件。
其他回答
Rsync又快又简单:
rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude
你可以使用-排除多次。
rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude --exclude anotherfoldertoexclude
注意——exclude选项后的目录thefoldertoexclude是相对于源文件夹的,即:sourcefolder/thefoldertoexclude。
此外,您还可以添加-n进行演练,以查看在执行实际操作之前将复制什么,如果一切正常,则从命令行中删除-n。
晚了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
Rsync无法使用。下面是一个可行的替代方案。
tar -cf - --exclude='./folder' --exclude='./file.tar' ./source_directory | tar -xf - -C ./destination_directory
这是对Linus Kleen的回答的修改。他的回答对我没用,因为会有。添加在cp不喜欢的文件路径前面(路径看起来像source/.destination/file)。
这个命令对我很管用:
找到。-type f -not -path '*/ exclude -path/*' -exec cp——parents '{}' '/destination/' \;
——parents命令保留目录结构。
我使用一个“do while”循环来读取find命令的输出。在这个例子中,我正在匹配(而不是排除)某些模式,因为我想要的模式匹配的数量比我不想要的要少。你可以在-iname标志前加一个-not来反转逻辑:
find . -type f -iname "*.flac" -o -print0 -iname "*.mp3" -print0 -o -iname "*.wav" -print0 -o -iname "*.aac" -print0 -o -iname "*.wma" -print0 | while read -d $'\0' file; do cp -ruv "$file" "/media/wd/network_sync/music/$file"; done
我使用上述方法复制服务器上比我在/media/wd上安装的Western Digital TV Live Hub上的文件更新的所有音乐类型文件。我使用上面的方法是因为我有很多DVD文件,mpeg等,我想排除,因为某种原因rsync看起来像是在复制,但在我看了wd设备后,文件不存在,尽管在rsync期间没有错误使用这个命令:
rsync -av --progress --exclude=*.VOB --exclude=*.avi --exclude=*.mkv --exclude=*.ts --exclude=*.mpg --exclude=*.iso --exclude=*ar --exclude=*.vob --exclude=*.BUP --exclude=*.cdi --exclude=*.ISO --exclude=*.shn --exclude=*.MPG --exclude=*.AVI --exclude=*.DAT --exclude=*.img --exclude=*.nrg --exclude=*.cdr --exclude=*.bin --exclude=*.MOV --exclude=*.goutputs* --exclude=*.flv --exclude=*.mov --exclude=*.m2ts --exclude=*.cdg --exclude=*.IFO --exclude=*.asf --exclude=*.ite /media/2TB\ Data/data/music/* /media/wd/network_sync/music/
推荐文章
- fork(), vfork(), exec()和clone()的区别
- 同一行上有多个命令
- 检查bash变量是否等于0
- 在tmux中保持窗口名称固定
- 只使用md5sum获取哈希值(没有文件名)
- 如何生成一个核心转储在Linux上的分段错误?
- 在Python中如何在Linux和Windows中使用“/”(目录分隔符)?
- 在Bash中测试非零长度字符串:[-n "$var"]或["$var"]
- 如何删除超过X小时的文件
- (Mac) -bash: __git_ps1:命令未找到
- 如何创建Bash别名?
- 将所有变量从一个shell脚本传递到另一个?
- 如何在Apache服务器上自动将HTTP重定向到HTTPS ?
- 如何删除shell脚本中文件名的扩展名?
- 使用xargs调用shell函数