小编典典

批量编写远程SSH命令脚本的最佳方法(Windows)

linux

我希望批量编写一些脚本,这将需要在Linux上运行远程ssh命令。我希望返回输出,以便可以在屏幕上显示或记录它。

我尝试过,putty.exe -ssh user@host -pw password -m command_run但屏幕上没有返回任何内容。

有人做过吗?


阅读 924

收藏
2020-06-03

共1个答案

小编典典

-mPuTTY 的切换将 脚本文件路径 作为参数而不是 command

参考:https :
//the.earth.li/~sgtatham/putty/latest/htmldoc/Chapter3.html#using-
cmdline-m

因此,您必须将命令(command_run)保存到纯文本文件(例如c:\path\command.txt),然后将其传递给PuTTY:

putty.exe -ssh user@host -pw password -m c:\path\command.txt

但是请注意,您应该使用Plink(PuTTY套件中的命令行连接工具)。这是一个控制台应用程序,因此您可以将其输出重定向到文件(使用PuTTY不能执行的操作)。

命令行语法相同,但添加了输出重定向:

plink.exe -ssh user@host -pw password -m c:\path\command.txt > output.txt

请参阅使用命令行连接工具Plink

借助Plink,您实际上可以直接在其命令行上提供该命令:

plink.exe -ssh user@host -pw password command > output.txt
2020-06-03