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