I've a file with a sequence of JSON element:
{ element0: "lorem", value0: "ipsum" }
{ element1: "lorem", value0: "ipsum" }
...
{ elementN: "lorem", value0: "ipsum" }
Is there a shell script to format JSON to display file content in a readable form?
I've seen this post, and I think is a good starting point!
My idea is to iterate rows in the file and then:
while read row; do echo ${row} | python -mjson.tool; done < "file_name"
Does anyone have any other ideas?
There are a bunch of them. I personally have this alias in my
.zshrc
where
pjson.py
isAllows me to use that in a command line as a pipe (something like
curl http://.... | pjson
).OTOH, Custom code is a liability so there's jq, which to me looks like the gold standard. It's written in C (and is hence portable with no dependencies like Python or Node), does much more than just pretty printing and is fast.
Colored output using Pygmentize + Python json.tool
Pygmentize is a killer tool. See this. I combine python json.tool with pygmentize
For other similar tools and installation instruction see the answer linked above.
Here is a live demo:
Pipe the results from the file into the python json tool 2.6 onwards
You can use Python JSON tool (requires Python 2.6+).
For example:
Which will give you:
jq - a lightweight and flexible command-line JSON processor
I felt this deserved its own entry when it took me longer than it should have to discover. I was looking for a simple way to pretty-print the json output of
docker inspect -f
. It was mentioned briefly above by Noufal Ibrahim as part of another answer.From the jq website (https://stedolan.github.io/jq/):
It provides colored output by default and you simply have to pipe to
jq
.Example:
"Raw" json output vs the same piped to jq
You can use
jq
package which can be installed in all Linux systems. Install the tool using below commands.Then you will be able to pipe text streams to the jq tool.
Hope this answer will help.