我希望使用duplicity
(我经常使用它,通常没有问题)/etc
和/root
. 我希望.cache
从/root
目录中排除。我尝试:
duplicity incremental --full-if-older-than 30W --include /etc \
--include /root --exclude '/root/.cache' --exclude / \
--verbosity info / scp://TARGET
这通常有效,但/root/.cache
包含在备份中。而不是'/root/.cache'
我尝试了不同的表达模式:/root/.cache
, "/root/.cache"
, "**.cache"
, '**.cache'
,''**.cache''
和其他几个,结果相同。
根据duplicity手册(我在 openSUSE 上有 0.7.12),表达式"**.cache"
应该可以正常工作。我是误读了手册还是做错了什么?