就像 tar 和 npm 以及类似的命令一样,我希望使用一个忽略文件,例如:
.myrsyncignore
喜欢:
rsync -r --exclude='.myrsyncignore' ./ tmp/foo
是否存在这样的选项,而不是必须忽略命令行中的所有内容?看来不是:https://www.thegeekstuff.com/2011/01/rsync-exclude-files-and-folders/
答案1
是的,该选项称为--exclude-from
:
rsync --exclude-from=somefile source target
rsync
您可以在手册 ( )中阅读相关内容man rsync
,并且您链接到的博客文章中也提到了这一点。