Y
Hacker News
new
|
ask
|
show
|
jobs
by
kasbah
1295 days ago
In all seriousness Python's json.tool is a great option here.
cat big.json | python3 -m json.tool
or
python3 -m json.tool big.json
1 comments
jwilk
1295 days ago
There's also json_pp(1), provided by Perl.
link