13 lines
242 B
Bash
Executable file
13 lines
242 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#makes jsons human (and machine) readable
|
|
|
|
echo "CACHE:"
|
|
cat grid-cache.json | python3 -m json.tool
|
|
echo " "
|
|
echo "GRID:"
|
|
cat grid-real.json | python3 -m json.tool
|
|
echo " "
|
|
echo "CLIENTS:"
|
|
cat clients.json | python3 -m json.tool
|