win系统ssh上传下载文件

使用ssh命令登录:
ssh username@remote_host
登录后,可以使用scp命令复制文件到远程服务器:
scp /path/to/file.txt username@remote_host:/path/to/remote/directory/
从远程服务器复制文件到本地:
scp username@remote_host:/path/to/remote/file.txt /path/to/local/direct

Read More