Is there a (unix) shell script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ foo: "lorem", bar: "ipsum" }
... into something like this:
{
foo: "lorem",
bar: "ipsum"
}
|
Is there a (unix) shell script to format JSON in human-readable form? Basically, I want it to transform the following:
... into something like this:
|
||||
|
With python you can just do
|
|||||||||||||||||||||
|
|
I use the "space" argument of Examples:
From the Unix command-line with nodejs, specifying json on the command line:
(line break inserted for visual consumption only) Returns:
From the Unix command-line with nodejs, specifying a filename that contains json, and using an indent of 2 spaces:
(line break inserted for visual consumption only) |
|||||||||||||||||||
|
|
The JSON Ruby Gem is bundled with a shell script to prettify JSON:
Script download: gist.github.com/3738968 |
|||||||||||||
|
|
Thanks to J.F. Sebastian's very helpful pointers, here's a slightly enhanced script I've come up with:
|
|||||
|
|
On *nix, reading from stdin and writing to stdout works better:
Put this in a file (I named mine "prettyJSON" after AnC's answer) in your PATH and Depending on the version of Python you have installed, you may need to replace "import simplejson as json" with "import json". |
|||||||||||||
|
|
I use jshon - to do exactly what you're describing, just run:
You can also pass arguments to transform the json data. |
|||||||||
|
|
i usually just do
and to read some data :
If the json data is in a file:
|
||||
|
Check out Jazor. It's a simple command line JSON parser written in Ruby.
|
|||||||||||||||
|
|
with perl, use CPAN module JSON::XS. it installs a command line tool "json_xs" Validate:
Prettify the JSON file src.json to pretty.json.
|
|||||||
|
|
I wrote a tool that has one of the best "smart whitespace" formatters available. It produces more readable and less verbose output than most of the other options here. This is what "smart whitespace" looks like:
I may be a bit biased, but it's an awesome tool for printing and manipulating JSON data from the command-line. It's super-friendly to use and has extensive command-line help/documentation. It's a swiss-army-knife that I use for 1001 different small tasks that would be surprisingly annoying to do any other way. Latest use-case: Chrome, Dev console, Network tab, export all as HAR file, "cat site.har | underscore select '.url' --outfmt text | grep mydomain"; now I have a chronologically ordered list of all url fetches made during the loading of my comany's site. Pretty printing is easy:
same thing:
same thing, more explicit:
This tool is my current passion project, so if you have any feature requests, good chance I'll address them. |
|||||||||
|
|
Or, with Ruby:
|
|||||||||||
|
|
If you use npm and nodejs, you can do |
||||
|
|
|
There is a popular online tool called JSONLint. If you cared to read the credits it will lead you to the JSON Lint project on github where you will find out that it is in fact A JSON parser and validator with a CLI. Quote from the readme file:
|
||||
|
|
NOTE: It is not the way to do it. The same in Perl:
|
|||||
|
|
Try
Install it with
and then, pipe any json content to |
||||
|
|
|
There is TidyJSON it's C#, so maybe you can get it to compile with Mono, and working on *nix. No guarantees though, sorry. |
||||
|
|
|
I recommend using the json_xs command line utility which is included in the JSON::XS perl module. JSON::XS is a perl module for serializing/deserializing JSON, on a Debian or Ubuntu machine you can install it like this:
It is obviously also avalible on cpan. To use it to format json obtained from a url you can use curl or wget like this:
or this:
and to format json contained in a file you can do this:
|
||||
|
|
|
|
||||
|
|
|
With Perl, if you install JSON::PP from CPAN you'll get the json_pp command. Stealing the example from B Bycroft you get:
It's worth mentioning that |
||||
|
|
|
Install yajl-tools with the command below:
then,
|
||||
|
|
|
So there are 30+ answers to this question, but I have another solution. I've been using this for a while and I can't say how great it is to have. ./jq > http://stedolan.github.com/jq/ It's very simple to use, made for one thing (printing JSON from the command-line) and it works great! You can find their tutorials here > http://stedolan.github.com/jq/tutorial/ But it's very simple to get up and running. For a simple format just do something like:
|
||||
|
|
|
Here is how to do it with groovy script. Create a groovy script, lets say "pretty-print"
Make script executable.
Now from command line,
|
||||
|
|
|
I'm the author of json-liner. It's a command line tool to turn JSON into a grep friendly format. Give it a try.
|
||||
|
|
|
My JSON files were not parsed by any of these methods. My problem was similar to this post Google Data Source JSON not valid?. The answer to that post helped me find a solution. http://stackoverflow.com/a/628634/619760 It is considered to be invalid JSON without the string keys.
must be:
This link gives a nice comprehensive comparison of some of the different JSON parsers. http://deron.meranda.us/python/comparing_json_modules/basic Which led me to http://deron.meranda.us/python/demjson/. I think this one parser is much more fault tolerant than many others. |
|||||
|
|
J.F. Sebastian's solutions didn't work for me in Ubuntu 8.04, here is a modified Perl version that works with the older 1.X JSON library:
|
||||
|
|
|
with javascript / nodeJS: take a look at the vkBeautify.js plugin http://www.eslinstructor.net/vkbeautify/ which provides pretty printing for both JSON and XML text it's written in plain javascript, less then 1.5K (minified) and very fast. |
||||
|
|
|
I know that the original post asked for shell script. but there are so many useful and irrelevant answers that probably ddid not help the original author. Adding on to irrelevance :) BTW I could not get any command line tools to work If somebody want simple JSON javascript, they could: JSON.stringfy( JSON.parse(str), null, 4) http://www.geospaces.org/geoweb/Wiki.jsp?page=JSON%20Utilities%20Demos Here is java script that not only pretties the JSON but orders them by their attribute or by attribute and level. If input is: { "c": 1, "a": {"b1": 2, "a1":1 }, "b": 1}, Either prints:(Groups all the objects together { "b": 1, "c": 1, "a": { "a1": 1, "b1": 2 } } OR (Just orders by key) { "a": { "a1": 1, "b1": 2 }, "b": 1, "c": 1 } |
||||
|
|
|
The PHP version, if you have PHP >= 5.4.
|
||||
|
|
|
jsonpp is a very nice command line JSON pretty printer. From the README:
If you're on Mac OS X, you can |
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
jsonlibrary, but I added pygments as well to get syntax highlighting. – exhuma Nov 9 '12 at 13:40