jenkins之SSH Publishers连接windows


SSH服务器为Window10(安装OpenSSH)

在Publish Over SSH Plugin插件里执行命令时,只能执行第一句

例如:

dir
dir

只有第一句命令会打印出来

正确写法

cmd /c "dir & dir"

官方网站issues下找到了解决方法

https://issues.jenkins-ci.org/browse/JENKINS-17809

The solution is to add "cmd /c" before of the command.

Por example, you could to write in the section "Exec command" of the Publish Over SSH Plugin:

cmd /c mkdir "D:\MyFolder\"

Also, if you want to run multiples commands, you could write something like the following statement:

cmd /c "echo Hello & echo My Friend"

On the other hand, is better execute a file batch with the lines to execute:

cmd /c "C:\data\scripts\myScript.bat"

 

Window安装OpenSSH

参考:https://www.cnblogs.com/SmilingEye/p/12100934.html


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM