1、ssh上传文件到远程服务器
scp local_file_path username@server:/dest_path
如 scp ./test/test1.txt wilson@183.37.123.34:/local/wilson/myfile
这样就把本地当前目录下 test文件夹中的test1.txt文件复制到了183.37.123.34服务器上的/local/wilson/myfile/文件夹下;
2、ssh从远程服务器下载文件
就把两个地址互换一下即可
scp username@server:/dest_path local_file_path
如 scp wilson@183.37.123.34:/local/wilson/myfile/test1.txt ./test
这样就把远程服务器上的test1.txt文件复制到了本地 test目录下;
3、如果要上传或者下载文件夹,则直接在scp后面添加-r命令即可
如scp -r ./test/test1.txt wilson@183.37.123.34:/local/wilson/myfile