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