如何在 jq 调用中转义破折号

发布于 2025-01-11 13:36:13 字数 117 浏览 0 评论 0原文

如何在 jq 调用中转义破折号?

cat afile | jq -r .commit-sha1

所以破折号正在以某种方式被解释。如何逃脱呢?我尝试用“包裹”

How to escape dash in jq call?

cat afile | jq -r .commit-sha1

So the dash is being interpreted in some way. How to escape it? I tried wrap with "

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小镇女孩 2025-01-18 13:36:13

对于此类键,您需要引用该键,但引号也必须加引号,以便 shell 在运行 jq 之前不会将其删除。

jq -r '."commit-sha1"'

根据手册页,.foo 的缩写是“简单的、类似标识符的键”。

For such keys, you need to quote the key, but the quotes must also be quoted so that they aren't removed by the shell prior to running jq.

jq -r '."commit-sha1"'

The abbreviated from .foo is for "simple, identifier-like keys", according to the man page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文