unix命令过滤json

时间:2018-10-18 09:40:03

标签: json shell unix curl

[
   {
      "name":"sandboxserver.tar.gz.part-aa",
      "hash":"010d126f8ccf199f3cd5f468a90d5ae1",
      "bytes":4294967296,
      "last_modified":"2018-10-10T01:32:00.069000",
      "content_type":"binary/octet-stream"
   },
   {
      "name":"sandboxserver.tar.gz.part-ab",
      "hash":"49a6f22068228f51488559c096aa06ce",
      "bytes":397973601,
      "last_modified":"2018-10-10T01:32:22.395000",
      "content_type":"binary/octet-stream"
   },
   {
      "name":"sandboxserver.tar.gz.part-ac",
      "hash":"2c5e845f46357e203214592332774f4c",
      "bytes":5179281858,
      "last_modified":"2018-10-11T08:20:11.566000",
      "content_type":"binary/octet-stream"
   }
]

使用curl -l -X GET列出云对象存储中的对象时,我得到了JSON以上的响应。在遍历所有对象时,如何获取分配给数组的对象“名称”。 例如

array[1]="sandboxserver.tar.gz.part- aa"
array[2]="sandboxserver.tar.gz.part- ab"
array[3]="sandboxserver.tar.gz.part- ac"

2 个答案:

答案 0 :(得分:2)

您可以使用jq

jq is a powerful tool that lets you read, filter, and write JSON in bash.

您可能需要先安装它。

尝试一下:

我已将您的json粘贴到文件中

~$ cat n1.json
[  
   {  
      "name":"sandboxserver.tar.gz.part-aa",
      "hash":"010d126f8ccf199f3cd5f468a90d5ae1",
      "bytes":4294967296,
      "last_modified":"2018-10-10T01:32:00.069000",
      "content_type":"binary/octet-stream"
   },
   {  
      "name":"sandboxserver.tar.gz.part-ab",
      "hash":"49a6f22068228f51488559c096aa06ce",
      "bytes":397973601,
      "last_modified":"2018-10-10T01:32:22.395000",
      "content_type":"binary/octet-stream"
   },
   {  
      "name":"sandboxserver.tar.gz.part-ac",
      "hash":"2c5e845f46357e203214592332774f4c",
      "bytes":5179281858,
      "last_modified":"2018-10-11T08:20:11.566000",
      "content_type":"binary/octet-stream"
   }
]

然后使用jq查找名称:

~$ jq -r '.[].name' n1.json
sandboxserver.tar.gz.part-aa
sandboxserver.tar.gz.part-ab
sandboxserver.tar.gz.part-ac

答案 1 :(得分:0)

如果您不想依赖jq之类的外部实用程序,则可以使用python + bash组合来解决问题。

response="$(cat data.json)"
declare -a array
array=($(python -c "import json,sys; data=[arr['name'] for arr in json.loads(sys.argv[1])]; print('\n'.join(data));" "$response"))

echo "${array[@]}"

建议:编写嵌入式python代码可能很快就会变得不可读,因此您可能需要将python代码放在​​单独的脚本中并运行该脚本。