我怎样才能从腻子复制文件到Windows?

我打开腻子,并用我的loginID和密码连接到服务器。 并试图将当前存在的文件复制到我的本地窗口系统。

其中一个腻子工具是pscp.exe; 它将允许您从远程主机复制文件。

它使用PSCP。 说明:

  1. 从Putty下载页面下载PSCP.EXE
  2. 打开命令提示符并键入set PATH=<path to the pscp.exe file>
  3. 在命令提示符下,使用cd命令指向pscp.exe的位置
  4. 键入pscp
  5. 使用以下命令将文件窗体远程服务器复制到本地系统

     pscp [options] [user@]host:source target 

因此,要将用户fred的服务器example.com的文件/etc/hosts复制到文件c:\temp\example-hosts.txt ,请键入:

 pscp fred@example.com:/etc/hosts c:\temp\example-hosts.txt 
Interesting Posts