如何 rsync 排除特定目录

如何 rsync 排除特定目录

如果我有以下目录结构:

foo/
    foo.txt
bar/
    foo/
        hum.txt

foo如何在不排除的情况下排除顶级目录bar/foo?当我运行:

rsync --exclude-from exclude-file ...

其内容exclude-file仅仅是:

foo

两个都目录被排除。

答案1

好的,答案显而易见。exclude-file应该写成:

/foo

相关内容