使用rsync递归地只复制具有特定扩展名的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用rsync递归地只复制具有特定扩展名的文件相关的知识,希望对你有一定的参考价值。
Useful for syncing only MP3 or PDF files which are nested in a deep directory tree
rsync -rvtW --delay-updates --modify-window=1 --progress --include='*.pdf' --include='*.mp3' --exclude='*.*' source dest
以上是关于使用rsync递归地只复制具有特定扩展名的文件的主要内容,如果未能解决你的问题,请参考以下文章