11 lines
162 B
Bash
Executable file
11 lines
162 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;
|
|
|