scp 到 rsync 转换
以下内容按预期工作。
scp -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner {} [email protected]:/home/fner/
但同一命令的 rsync 版本不起作用:
rsync -av -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner /home/companyuser/ [email protected]:/home/fner/
我使用 find -exec >> scp 在第一个示例中复制文件。我可以将所有文件复制到一个位置。 但 rsync 将允许我在目标上拥有与主主机完全相同的相同目录结构。
The following is working as expected.
scp -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner {} [email protected]:/home/fner/
But the rsync version of the same command does not work:
rsync -av -o IdentityFile=/home/companyuser/.ssh/id_dsa_fner /home/companyuser/ [email protected]:/home/fner/
I use find -exec >> scp to copy files in the first example. I can copy all the files in one location.
But rsync will allow me to have the same directory structure on destination exactly like master host.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 -e 指定传输类型
you might try specifying the transfer type with -e