单个文件的 Rsync --link-dest 选项
我一直在使用 rsync 和 --link-dest 选项来备份目录。 我想用单个文件实现同样的目标,即我想将文件 srcfile 复制到 dstfile ,知道我在 destfile 目录中有名为 prevfile 的文件的先前版本。
对于我使用的目录: rsync -a --link-dest=prevdir srcdir dstdir
但是 link-dest 只能采用目录值。它不能获取文件。我想做类似的事情: rsync -a --link-dest=prevfile srcfile dstfile
I have been using rsync with --link-dest option to backup directories.
I want to achieve the same thing with single files, i.e., I want to copy file srcfile to dstfile knowing that I have a previous version of the file named prevfile in destfile directory.
For directories I use: rsync -a --link-dest=prevdir srcdir dstdir
However link-dest can only take directory values. It cannot take files. I would like to do something like: rsync -a --link-dest=prevfile srcfile dstfile
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
遗憾的是这不起作用——我同意这会非常有用。但要模拟它,您所要做的就是自己创建链接:
顺便说一下,我将此作为错误提交:https://bugzilla.samba.org/show_bug.cgi?id=8594
It's a pity this doesn't work--I agree it would be very useful. But all you have to do to simulate it is make the link yourself:
By the way, I filed this as a bug: https://bugzilla.samba.org/show_bug.cgi?id=8594