gpt4 book ai didi

rsync 多个远程目录到本地机器保留目录路径

转载 作者:行者123 更新时间:2023-12-02 09:38:54 26 4
gpt4 key购买 nike

我可以这样使用 rsync 吗:

rsync -e ssh root@remote.com:/path/to/file:/path/to/second/file/ /local/directory/

还是我必须做其他事情?

最佳答案

直接来自rsync手册页:

The syntax for requesting multiple files from a remote host is done
by specifying additional remote-host args in the same style as the
first, or with the hostname omitted. For instance, all these work:

rsync -av host:file1 :file2 host:file{3,4} /dest/
rsync -av host::modname/file{1,2} host::modname/file3 /dest/
rsync -av host::modname/file1 ::modname/file{3,4}

这意味着您的示例应该在第二条路径之前添加一个空格:
rsync -e ssh root@remote.com:/path/to/file :/path/to/second/file/ /local/directory/

我建议你先用 -n 试试或 --dry-run选项,因此您可以在实际执行复制(和可能的删除)之前查看将要执行的操作。

关于rsync 多个远程目录到本地机器保留目录路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15817583/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com