gpt4 book ai didi

json - 使用 jq,获取数组中 shell 定义的 JSON 对象内的特定键的值

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:03:57 26 4
gpt4 key购买 nike

给定:

   [{
"customer.name":"malinda",
"customer.details":"test123"
}]

使用jq,获取“customer.name”的值。

我的尝试:

echo $response | jq -r .[] | "customer.name"

最佳答案

使用jq:

echo '[{ "customer.name":"malinda", "customer.details":"test123" }]' | 
jq '.[]."customer.name"'

或不带双引号:

echo '[{ "customer.name":"malinda", "customer.details":"test123" }]' |
jq -r '.[]."customer.name"'

由于点 . 既不是字母数字也不是下划线,因此您需要引用键名。

关于json - 使用 jq,获取数组中 shell 定义的 JSON 对象内的特定键的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51873886/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com