通过cmd命令行向 linux 发送文件,使用方法可以查看本人博客,或从 linux 拉取文件。
下载资源包后,解压,把 pscp.exe 文件复制到 C:\Windows\System32
常用 cmd 命令:
1)向 linux 发送指定目录及目录下所有文件
pscp -P 22 -r -pw root#@123 C:\Release\home\XXX root@192.168.1.30:/home
注:linux 登录密码为 root#@123, 需要向 linux 发送的 windows 文件目录为 C:\Release\home\XXX,
linux 登录帐号 root,linux 服务器 ip: 192.168.1.30,linux 上目标存放目录 /home
2)从 linux 拉取文件
pscp -P 22 -r -pw root#@123 root@192.168.5.30:/home/XXX C:\Release\home
1