如何使 rsync 保留未更改文件的时间戳
我使用静态网站生成器,每次运行时都会生成网站中的所有文件。生成文件后,我使用 rsync 将内容复制到位。
为了实现更好的缓存,我希望 rsync 不修改目标中未更改的那些文件的时间戳。是否可以?
编辑:为了清楚起见,所有源文件的时间戳始终比目标文件的时间戳新。
I use a static website generator that generates all the files in the website on each run. After generating the files, I use rsync to copy the content in place.
To allow better caching, I'd like rsync to not modify the timestamp of those files in the destination that have not changed. Is it possible?
EDIT: To make it clear, timestamps of all the source files are always newer than the timestamps of the destination files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
-c
选项似乎可以满足我的要求。就我而言,性能损失不是问题。The
-c
option seems to do what I want. The performance penalty is not an issue in my case.您尝试过 -t 和 -E 标志吗?
编辑:呃...或者每次重新生成网站时源文件的时间戳都会更改,即使文件没有更改?
Have you tried the -t and -E flags?
EDIT: Uh... or is the timestamp of the source files changed every time you regenerate the website, even if the files haven't changed?