bash中的结构解决方案

问题描述 投票:0回答:1

我有一个来自API请求的字符串,看起来像大json每个元素都有2个字段(name,href),在这个操作之后我将这个名字添加到了数组:

str_from_api="$(user_groups_json "limit=100" | jq -r '.items | .[].name')"
readarray -t usergroups_array <<< "$str_from_api"

但我需要在数组usergroups_array中存储2个变量(name和href)。我是指下一个解决方案

阵:

str_from_api=(name:"Test name", href: "Test href")

这个数组将有100条记录。在我需要对每个名称和每个href进行操作之后,这就是我需要访问此结构的每个元素的原因。

我该如何实现呢?

UPDATE

JSON:

{
 "totalCount": 2,
 "items": [
     {
      "name": "test name",
      "active": false,
      "createdFrom": "SAML",
      "_meta": {
        "allow": [
        "DELETE",
        "GET",
        "PUT"
       ],
       "href": "https://href2.com"
  }
},
{
  "name": "test name 2",
  "active": false,
  "createdFrom": "SAML",
  "_meta": {
    "allow": [
      "DELETE",
      "GET",
      "PUT"
    ],
    "href": "https://href1.com"
  }
}
]
bash shell scripting
1个回答
0
投票

这是在Bash循环中获取输出的快速而肮脏的尝试。

user_groups_json "limit=100" |
jq -r '.items | .[] | (._meta.href + " " + .name)' |
while read -r href name; do
    echo "'$name' has href '$href'"
    : do stuff with these variables here
done

你说你想要这些在数组中,但然后解释你希望一次处理一个;所以将整个列表存储在一个只能访问一次的变量中似乎是多余的。

© www.soinside.com 2019 - 2024. All rights reserved.