gitlabculture
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

liveGraph.sh
text/x-sh

Download raw (195 bytes)

bash liveGraph.sh "https://ethertoff.caveat.be/ether/p/dispositifmd"
	#!/bin/bash
	echo $1;
	while true
	do
	    curl $1/export/txt > livegraph.dot
	    dot -Tpng livegraph.dot -O
	sleep 30
	done