双重性包括通配符



我想用重复性备份我的lxc容器的所有家,我使用(命令行简化为问题):

duplicity --include '/data/lxc/**/rootfs/home' --exclude '/data/lxc'

与房屋不匹配,而

duplicity --include '/data/lxc/oneofthecontainers/rootfs/home' --exclude '/data/lxc'

工程。

进一步的测试表明,

duplicity --include '/data/lxc/oneofthecontainers/rootfs/home/**' --exclude '/data/lxc'

也不起作用。口是心非的手册页告诉我第一场比赛获胜,***被允许作为通配符,其中**匹配所有内容,并且只*一个路径组件。

仍然不知道,为什么这不起作用,但我用 --include-globbing-filelist 和一个文件列表解决了它,其中包含包含/排除的 "+ ""- " 条目,现在它可以工作了。

相关内容

  • 没有找到相关文章

最新更新