通过 ssh 使用 rsync 从远程复制多个文件

通过 ssh 使用 rsync 从远程复制多个文件

我想使用从远程计算机复制多个文件rsync。所以我使用以下命令。

rsync -Pav -e 'ssh -i sshkey' user@remotemachine:/home/user/file1.zip file2.zip file3.zip  .

它显示以下错误

意外的本地 arg:file2.zip 如果 arg 是远程文件/目录,请在其前面加上冒号 (:)。 rsync 错误:main.c(1362) [Receiver=3.1.0] 处的语法或使用错误(代码 1)

答案1

这是相当古老的,但接受的答案有点太严格 - 多个文件不一定是 rsync 的单个参数。从man rsync

ADVANCED USAGE
       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}

所以OP的命令是

rsync -Pav -e 'ssh -i sshkey' user@remotemachine:/home/user/file1.zip :/home/user/file2.zip :/home/user/file3.zip  .

这对于旧版本的 rsync 来说是不可能的,但我认为所有主要发行版都已经这样做了好几年了。

答案2

所有远程文件都应该是 rsync 的参数之一。因此,只需将所有远程文件放在单引号中即可:

rsync -Pav -e 'ssh -i sshkey' 'user@remotemachine:/home/user/file1.zip file2.zip file3.zip' .

顺便说一句,您也可以使用星号来执行此操作(星号将由远程 shell 解析):

rsync -Pav -e 'ssh -i sshkey' 'user@remotemachine:/home/user/*.zip' .

相关内容