1.从服务器上下载文件
ssh root@13.111.122.133
2.从服务器上下载文件
scp username@servername:/path/filename /var/www/local_dir(本地目录)
3.上传本地文件到服务器
scp /path/filename username@servername:/path
4.上传目录到服务器
scp -r local_dir username@servername:remote_dir
1.从服务器上下载文件
ssh root@13.111.122.133
2.从服务器上下载文件
scp username@servername:/path/filename /var/www/local_dir(本地目录)
3.上传本地文件到服务器
scp /path/filename username@servername:/path
4.上传目录到服务器
scp -r local_dir username@servername:remote_dir
转载于:https://www.cnblogs.com/17bdw/p/10464782.html