将多行输出读取到 shell 中的其他变量中
我的进程的输出如下所示:
{
"v1": "x0482030ssj09645j34"
}
我需要解析此输出才能提取 x0482030ssj09645j34。
任何帮助表示赞赏。谢谢!
I have an output from a process that looks like this:
{
"v1": "x0482030ssj09645j34"
}
I need to parse this output in order to extract x0482030ssj09645j34.
Any help is appreciated. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jq 是一个方便的 JSON 解析器。在这种情况下,您可以
只输出该值
jq is a handy JSON parser. In this case, you can do
to output just that value