利用pscp程序实现Windows和Linux互传文件

1. 在Putty官方网站上下载pscp.exe程序,下载地址如下:

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

2. 将下载好的pscp.exe程序放置到Windows的C:WindowsSystem32这个目录下

3. Windows传文件到Linux:

    打开cmd命令行,pscp E: est.txt root@192.168.1.1:/home/

4. Linux传文件到Windows:

    打开cmd命令行,pscp root@192.168.1.1:/home/test.txt  G:/test/

原文地址:https://www.cnblogs.com/zhnhelloworld/p/5912617.html