尝试在 HUDSON 中执行 SSH 命令时如何传递参数
我希望我的工作在其他服务器上执行一些命令。我创建了一个新的(参数化)作业,它只执行 shell 命令。
我不知道如何将构建参数传递到遥控器的命令行。
ssh myservername 'echo ${MY_PARAMETER}'
看看我的控制台输出,我看到:
+ ssh myservername echo ${MY_PARAMETER}
我想看到的是:
+ ssh myservername echo MyValueFromTheBuild
必须有一种方法可以实现这一点。
I want my job to do some commands on other servers. I've created a new (parameterized) job that simply executes shell commands.
I can't figure out how to get my build parameter to get passed along to the command line of the remote.
ssh myservername 'echo ${MY_PARAMETER}'
Looking at my console output I see:
+ ssh myservername echo ${MY_PARAMETER}
What I want to see is:
+ ssh myservername echo MyValueFromTheBuild
There must be a way to make this happen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个解决方案:
请注意,这里使用本地计算机上的变量值。它不会产生远程主机上变量的值。从上下文来看,前者似乎是您想要的。
一如既往,请小心不要评估您无法完全控制的输入。
Here's a solution:
Note that here the variable's value on the local machine is used. It won't yield the value of the variable on the remote host. From the context it sounds like the former is what you want.
As ever, be careful not to evaluate input you don't have complete control over.
我在我们的 Jenkins 服务器上使用它,它对我来说工作得很好。
ssh myservername“echo $PROJECTNAME”
I use this on our Jenkins server and it works just fine for me.
ssh myservername "echo $PROJECTNAME"
我的猜测是尝试以下语法形式之一:
My guess would be to try one of the following syntax forms: