Is there a (Unix) shell script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ \"foo\": \"lorem\", \"bar\":
That's how I do it:
curl yourUri | json_pp
It shortens the code and gets the job done.