使用pscp.exe,如何查找文件然后从Unix传输到我的Windows系统?

时间:2015-05-08 09:42:25

标签: unix vbscript pscp

我可以使用pscp.exe将文件从Unix系统传输到我的Windows系统,如下所示:

(我在VBScript中这样做。)

Function vbsMsgBox ()
    set sh = CreateObject("WScript.Shell")
    sh.Run "C:\Users\msiddiq1\New\PSCP.EXE -pw password username@host:/b_st/batchrepo/BS31GZI C:\Users\msiddiq1\New"
End Function

但我想将从以下find命令返回的所有文件传输到我的Windows系统:

find /b_st/batchrepo/BS31GZI -name "*900000007*" # It returns 6 filenames.

如何将此命令合并到上面的pscp命令?。

我无法创建新目录。我是否必须使用循环。 请建议。

感谢。

1 个答案:

答案 0 :(得分:0)

I just figured it out.

I tried this way:

SELECT REPLACE (email, '.com', '.net') FROM emp;

It worked just fine.

Source : http://the.earth.li/~sgtatham/putty/0.60/htmldoc/Chapter5.html

thanks.