赞
踩
我需要执行一个批处理脚本,它在Linux框内远程运行shell脚本.
现在,一切正常,但如果我尝试向shell脚本提供命令行参数,脚本将无法执行.
工作 – >前
C:\temp\Testing>putty.exe -pw “blabla” -m “test-script.sh”
bob@10.20.110.57
但是,如果我试图提供参数,它就无法执行.例:
不工作
C:\temp\Testing>putty.exe -pw “blabla” -m “test-script.sh ok-1”
bob@10.20.110.57
where ok-1 = command line argument for local script test-script.sh
我该如何解决这个问题?
解决方法:
您可以使用pscp和plink(PuTTY附带的实用程序)来执行此操作,而不是使用putty.exe.使用这样的命令:
pscp.exe -pw "blabla" test-script.sh bob@10.20.110.57:/some/path/
将脚本复制到远程服务器,然后使用如下命令:
plink.exe -ssh -pw "blabla" bob@10.20.110.57 /some/path/test-script.sh ok-1
执行它.
标签:bash,linux,batch-file,putty
来源: https://codeday.me/bug/20190530/1182897.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。