sh 如何将文件从远程服务器复制到本地计算机?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 如何将文件从远程服务器复制到本地计算机?相关的知识,希望对你有一定的参考价值。

The syntax for scp is:

If you are on the computer from which you want to send file to a remote computer:

scp /file/to/send username@remote:/where/to/put
Here the remote can be a FQDN or an IP address.

On the other hand if you are on the computer wanting to receive file from a remote computer:

scp username@remote:/file/to/send /where/to/put
scp can also send files between two remote hosts:

scp username@remote_1:/file/to/send username@remote_2:/where/to/put
So the basic syntax is:

scp username@source:/location/to/file username@destination:/where/to/put
You can read man scp to get more ideas on this.

以上是关于sh 如何将文件从远程服务器复制到本地计算机?的主要内容,如果未能解决你的问题,请参考以下文章

markdown 如何将文件从远程服务器复制到本地计算机?

如何远程复制另一台Linux服务器

用于将文件夹从本地计算机复制到远程服务器的 scp 命令语法 [关闭]

如何将本地文件复制到远程服务器

从本地复制到远程桌面时提示:无法复制文件,无法读取源文件或磁盘

sh 将远程目录复制/同步到本地计算机