从UNIX文件复制使用腻子窗口(copy file from unix to windows usi

2019-10-20 00:57发布

我需要从Windows到UNIX文件复制到一个特定的文件夹,并设置文件组(chgrp命令或东西)。 问题是,我在UNIX超过16组。

有没有办法做到这一点,而无需编写并推出一个UNIX脚本?

Answer 1:

它应该使用PSCP。 说明:

  1. 从腻子下载页面下载PSCP.EXE
  2. 打开命令提示和类型set PATH=<path to the pscp.exe file>
  3. 在命令提示点到的位置pscp.exe使用cd命令
  4. 类型pscp
  5. 使用下面的命令文件形式的远程服务器复制到本地系统

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

所以将文件复制/etc/hosts从服务器example.com的用户fred到文件c:\temp\example-hosts.txt ,您可以键入:

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

资源



Answer 2:

通过@Ravi Dhoriya以上答案是好的但有时这是行不通的。 您可能需要添加-scp标志,迫使SCP协议:

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


文章来源: copy file from unix to windows using PUTTY
标签: unix putty