我有一个动态创建的 json 文件。我只想知道“状态”的“错误”部分。有什么简单的方法可以做到这一点?
...
a lot of lines
...
"status": {
"errors": [
{
"message": "Input contained no data",
"reason": "invalid"
}
],
"state": "DONE"
}
...
a lot of lines
...
我需要在 shell 脚本中使用输出,所以首选 awk。