proxmaster/humanjson.sh

11 lines
159 B
Bash
Executable file

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