如何保留rsynced文件的远程权限
我已经阅读了 rsync 的手册页,但仍然无法弄清楚此要求的标志是什么:
- 在目标主机中设置新文件/目录的 775 权限
注意:本地主机是 windows xp,远程是 linux
编辑: 我目前正在使用以下标志。
-rltzC --force --delete
I've read through the man page of rsync but still can't figure out what are the flags for this requirement:
- set 775 permission of new files/directories in destination host
note: local host is windows xp, remote is linux
edit:
i'm using the following flags for the moment.
-rltzC --force --delete
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我找到了它......
感谢 http://catcode.com
rsync 的 chmod 标志不接受位掩码,而是接受
who=permissions
格式。对于我的问题,答案是
rsync 现在将为远程主机中新同步的文件/目录设置权限 755
I think i found it...
thanks to http://catcode.com
rsync's chmod flag do not accept bitmask, instead it accepts
who=permissions
format.For my question, the answer is
rsync will now set permission 755 for newly synced files/directories in remote host