4 ms·
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
by kasbah 4y 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
- jwilk 4y agoThere's also json_pp(1), provided by Perl.