win系统ssh上传下载文件

使用Windows自带的ssh命令传输文件
ssh username@remote_host
登录后,可以使用如下命令复制文件到远程服务器:
scp C:\path\to\local\file.txt username@remote_host:/path/to/remote/directory/
从远程服务器复制文件到本地:
scp username@remote_host:/path/to/remote/file.txt C:\path\to\local\direct

阅读全文 »