57-scp

其格式为“scp [参数] 本地文件 远程帐户@远程 IP 地址:远程目录”。

#拷贝本地文件到远程主机
[root@localhost ~]# scp myhistory.txt [email protected]:/root
[email protected]'s password: 
myhistory.txt                                                                  100%   23KB 337.1KB/s   00:00  

#拷贝远程主机文件到本地
[root@localhost ~]# scp [email protected]:/etc/redhat-release /root
[email protected]'s password: 
redhat-release                                                                 100%   38    24.4KB/s   00:00

你可能感兴趣的:(centos)