proxmaster/tools/humanjson.sh

11 lines
162 B
Bash
Raw Permalink 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;