8 lines
141 B
Bash
8 lines
141 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#makes jsons human (and machine) readable
|
||
|
|
||
|
#TODO: scan for all jsons and rewrite them.
|
||
|
cat journal.json | python3 -m json.tool
|
||
|
|