使用scp命令传输文件到其他计算机

在调试程序的时候有时候需要在不同计算机之间传输文件,使用U盘进行传输耗时耗力,其实如果在联网的情况下,我们可以使用Windows自带的scp命令传输(上传和下载)文件。

使用Windows的话最好下载git,然后将git的路径添加到系统变量Path中。

然后打开命令行窗口,假设本地主机用户名为local_username,远程主机的用户名是remote_username,上传文件的命令格式为

上传文件命令格式
scp local_file remote_username@remote_ip:remote_folder 
或者 
scp local_file remote_username@remote_ip:remote_file 
或者 
scp local_file remote_ip:remote_folder 
或者 
scp local_file remote_ip:remote_file

第1,2个指定了用户名,命令执行后需要再输入密码,第1个仅指定了远程的目录,文件名字不变,第2个指定了文件名;
第3,4个没有指定用户名,命令执行后需要输入用户名和密码,第3个仅指定了远程的目录,文件名字不变,第4个指定了文件名;

上传目录命令格式
scp -r local_folder remote_username@remote_ip:remote_folder 
或者 
scp -r local_folder remote_ip:remote_folder

从远程复制到本地,只要将从本地复制到远程的命令的后2个参数调换顺序即可

下载文件命令格式
scp remote_username@remote_ip:remote_file local_file  
或者 
scp remote_ip:remote_file local_file 
下载目录命令格式
scp -r remote_username@remote_ip:remote_folder local_folder 

你可能感兴趣的:(git)