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:datascriptsmyScript.bat"
Window安装OpenSSH