下载远程主机的文件或文件夹:
下载文件:scp username@ip:/dir/pathname/filename /localhost/dir/pathname/filename
下载文件夹:scp -r username@ip:/dir/ /localhost/dir/
将本机的文件或文件夹上传到远程主机:
上传文件:scp /localhost/dir/filename username@122.22.22.22:/home/user/
上传文件夹:scp -r /localhost/dir/pathname/ username@122.22.22.22:/home/user/pathname/
大家应该看出区别了,文件和文件夹的操作其实就多个-r选项。