proxmaster/humanjson.sh
2016-11-03 06:52:37 +02:00

9 lines
135 B
Bash
Executable file

#!/bin/bash
#makes jsons human (and machine) readable
for filename in db/*.json ; do
cat $filename | python3 -m json.tool
done;