proxmaster/humanjson.sh

11 lines
159 B
Bash
Raw Normal View History

2016-11-03 00:52:37 -04:00
#!/bin/bash
#makes jsons human (and machine) readable
for filename in db/*.json ; do
2017-07-30 16:23:09 -04:00
echo $filename;
python3 -m json.tool $filename
read;
2016-11-03 00:52:37 -04:00
done;