proxmaster/humanjson.sh

9 lines
135 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
cat $filename | python3 -m json.tool
done;