Parsing json with jq
Updated -
Overview
The jq tool allows one to parse properly formatted json documents. Using jq, inputs like this:
{"person": {"serial": 42,"name": "erin","properties": {"vitals": [{"height": "kinda tall", "weight": "unanswered"}], "preferences": [{"food": "pizza", "drink": "water"}]}}}
can be turned into this:
{
"person": {
"serial": 42,
...
Subscriber exclusive content
A Red Hat subscription provides unlimited access to our knowledgebase, tools, and much more.