侧边栏

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

posted on 2019-12-26 13:09  SmilingEye  阅读(1460)  评论(0编辑  收藏  举报

导航