caveat
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

liveGraph.sh
text/x-sh

Download raw (124 bytes)

#!/bin/bash
echo $1;
while true
do
    curl $1/export/txt > livegraph.dot
    dot -Tpng livegraph.dot -O
    sleep 30
done