如果我有以下目录结构:
foo/
foo.txt
bar/
foo/
hum.txt
foo
如何在不排除的情况下排除顶级目录bar/foo
?当我运行:
rsync --exclude-from exclude-file ...
其内容exclude-file
仅仅是:
foo
两个都目录被排除。
答案1
好的,答案显而易见。exclude-file
应该写成:
/foo
如果我有以下目录结构:
foo/
foo.txt
bar/
foo/
hum.txt
foo
如何在不排除的情况下排除顶级目录bar/foo
?当我运行:
rsync --exclude-from exclude-file ...
其内容exclude-file
仅仅是:
foo
两个都目录被排除。
好的,答案显而易见。exclude-file
应该写成:
/foo