format with python -m json.tool
for json in *json ; do echo $json; cat $json | python -m json.tool > $json.clean ; mv $json.clean $json; done
Showing
Please register or sign in to comment
for json in *json ; do echo $json; cat $json | python -m json.tool > $json.clean ; mv $json.clean $json; done