Print pretty JSON in Linux
Sometimes developers need to explore some JSON files. That can be quite tough and time comsuming. We can do it easier with command line tool jq.
First install it:
sudo apt updatesudo apt install -y jq
Run command:
jq '.' result.json
Result will be pretty nice looking
