formatting or parse json in command line
$ echo '{"user":"stedolan","titles":["JQ Primer", "More JQ"]}' | jq .
{
"user": "stedolan",
"titles": [
"JQ Primer",
"More JQ"
]
}$ echo '{"user":"stedolan","titles":["JQ Primer", "More JQ"]}' | jq .titles[0]
"JQ Primer"Last updated