如何在 jq 调用中转义破折号
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于此类键,您需要引用该键,但引号也也必须加引号,以便 shell 在运行
jq
之前不会将其删除。根据手册页,
.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
.The abbreviated from
.foo
is for "simple, identifier-like keys", according to the man page.