使用Shell Scripts任务从组中从组中检索Azure变量

发布于 2025-01-19 01:33:26 字数 400 浏览 0 评论 0原文

我以这种方式通过Azure YAML管道实现了一个方案。

从shell脚本我可以从名为“ Hello”的Azure组中获取和打印变量 回声$(Hello)

现在我不想直接调用“ Hello”变量。我希望它动态打电话。

动态值在执行之前存储在输出变量中。

output = $(git show --name-omly | cut *** 1)
echo $output 
# gives hello as the response

#I tried calling the azure variable like this.

echo $(echo $output)
echo $($output)

但是两者都不打印Azure变量值。

这里的所有投入都非常感谢。

I have a scenario implemented through azure yaml pipeline in such a way.

From shell script I am able to get and print the variable from the azure group named "hello" using
echo $(hello)

Now I dont want to call the "hello" variable directly. I wanted it to call dynamically.

the dynamic value is stored in a output variable before the execution.

output = $(git show --name-omly | cut *** 1)
echo $output 
# gives hello as the response

#I tried calling the azure variable like this.

echo $(echo $output)
echo $($output)

but both is not printing the azure variable value.

any inputs here are much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文