SCP
(Secure Copy)是一种基于SSH
(Secure Shell)的文件传输协议,它可以在本地和远程主机之间安全地复制文件。在Ubuntu系统下,我们可以使用scp命令来实现这个功能。
SCP
命令的基本格式如下scp [options] [user@]host1:[file1] [user@]host2:[file2]
其中,options
是可选参数,user
是用户名,host
是主机名,file
是文件名。
-p
:保留原文件的修改时间,访问时间和访问权限。-r
:递归复制整个目录。-q
:不显示传输过程中的文件列表。-v
:显示详细的传输过程。-P
:指定远程主机的端口。scp localfile user@remote:/path/to/remotefile
scp user@remote:/path/to/remotefile /path/to/localfile
scp user@remote1:/path/to/file user@remote2:/path/to/directory
scp -r /path/to/localdirectory user@remote:/path/to/remotedirectory
SCP
是一个非常实用的命令,它可以帮助我们在本地和远程主机之间,或者在两个远程主机之间安全地复制文件。虽然SCP
的速度不如其他一些文件传输协议,但是它的安全性是无可比拟的。