Using following command you can beautify the json file on linux box. Following command is useful to check difference between two json files.
linux json beautifier using python command
cat mydata.json | python -mjson.tool > mydatab.json
cat mydata_old.json | python -mjson.tool > mydatab_old.json
The post linux json beautifier using python command appeared first on DIG into CMS.