有没有办法使用 ssh 命令从远程服务器复制 .tar.gz 文件?

Is there a way to scp copy a .tar.gz file from a remote server using ssh command?

我正在尝试将 .tar.gz 文件从远程服务器复制到我的计算机上。我之前在不同的文件类型上成功地使用了 scp 方法,但是在对 .tar.gz 文件使用相同的方法时遇到了问题。我需要做些什么不同的事情?

我试过的命令如下..

scp userlogin@remoteserver:/ remote/file/path/.tar.gz local/file/path/to/copy/into

我知道有 'no such file or directory' - 我怀疑这可能与 tar.gz 文件的压缩方式有关?是不是捡不起来了?

您的 scp 命令中的源位置格式不正确,请尝试

scp userlogin@remoteserver:/remote/file/path/.tar.gz local/file/path/to/copy/into