单个文件的 Rsync --link-dest 选项

发布于 2024-11-29 22:02:39 字数 281 浏览 1 评论 0原文

我一直在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乄_柒ぐ汐 2024-12-06 22:02:39

遗憾的是这不起作用——我同意这会非常有用。但要模拟它,您所要做的就是自己创建链接:

ln prevfile dstfile
rsync -a srcfile dstfile

顺便说一下,我将此作为错误提交: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:

ln prevfile dstfile
rsync -a srcfile dstfile

By the way, I filed this as a bug: https://bugzilla.samba.org/show_bug.cgi?id=8594

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文