如何使用批处理文件执行putty上文本文件中保存的Unix命令

时间:2014-04-22 14:15:44

标签: linux unix batch-file automation putty

希望使用putty从批处理文件中执行保存在文本文件中的Unix命令。

我已使用此行创建了.bat文件:

start C:\Users\putty.exe -load "server" -l userID -pw Password -m commands.txt

commands.txt文件包含Unix命令

ls 

我通过putty在我的帐户中登录成功但是文本中添加的命令ls未执行

假设不需要使用plink.exe,因为我可以使用putty.exe本身登录

1 个答案:

答案 0 :(得分:2)

它被执行了,它只是你无法看到它,它会在你注意到之前消失掉

确保只需从

更改command.txt内容
ls 

ls >file_ls

然后检查文件' file_ls'在您的主目录中"服务器"它将有ls输出。