sh 使用SCP在系统之间传输文件 - 来自http://unix.stackexchange.com/questions/188285/how-to-copy-a-file-from-a-remot

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 使用SCP在系统之间传输文件 - 来自http://unix.stackexchange.com/questions/188285/how-to-copy-a-file-from-a-remot相关的知识,希望对你有一定的参考价值。

# The basic syntax is:
scp username@source:/location/to/file username@destination:/where/to/put

# Copy something from this system to some other system:
scp /file/to/send username@remote:/where/to/put

# Copy something from another system to this system:
scp username@remote:/file/to/send /where/to/put

# Copy something from some system to some other system:
scp username@remote_1:/file/to/send username@remote_2:/where/to/put

以上是关于sh 使用SCP在系统之间传输文件 - 来自http://unix.stackexchange.com/questions/188285/how-to-copy-a-file-from-a-remot的主要内容,如果未能解决你的问题,请参考以下文章

两台Linux系统之间传输文件的几种方法

使用scp命令实现服务器之间文件传输

SCP实现无需密码传输文件

远程传输文件命令:scp

WIndows与Linux之间传输文件

linux下用scp命令在两个服务器之间传输文件,利用php_scp函数进行文件传输