Comment on Jshon: A command line program to parse, read and create JSONComments−akv15yIt is a bit long, but you can also use Python for parsing the json files from command line: echo '{"a": "hello", "b": "world"}' | python -c"import sys,json;j = json.loads(sys.stdin.read());print j['a']"−webXL15yor in 2.6: echo '{"a": "hello", "b": "world"}' | python -mjson.tool
Comments
It is a bit long, but you can also use Python for parsing the json files from command line:
or in 2.6: