Is there a way to parse JSON without the use of additional dependencies such as jq. For example, when given:
{
"id": 1,
"tag_name": "v1.0.0",
"target_commitish": "master",
"name": "v1.0.0",
"body": "Description of the release",
"draft": false,
"prerelease": false,
"created_at": "2013-02-27T19:35:32Z",
"published_at": "2013-02-27T19:35:32Z"
}
How can I filter out things to only get name
or body
in bash?
Thanks in advance