如何让 rSync 只传输最终文件夹?
大家好,我不知道如何正确表达这一点,但是当我运行时(忽略 $DESTINATION):
rsync -avz tmp $DESTINATION
它将传输 tmp 的完整路径。因此,如果 tmp 位于 /root/tmp 中,则保存,而不是仅将 tmp 放入我的目标文件夹中,而是将 /root/tmp 的完整路径或它所在的任何位置放入...有没有办法解决这个问题?我只想将特定目录及其中的所有内容放入其中...而不是其上方的路径。
谢谢
Hey all, I don't know how to properly phrase this but when I run (ignore $DESTINATION):
rsync -avz tmp $DESTINATION
it will transfer the full path of tmp. So save if tmp is in /root/tmp instead of putting just tmp in my destination folder it puts the full path of /root/tmp or wherever it is located... is there a way around this? I just want to put the specific directory and everything in it... not the path above it as well.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
-R
使用相对文件名。use
-R
to use relative file names.