summaryrefslogtreecommitdiff
path: root/mpplot/loop
blob: 51840db00ac8871bc6fe9f498fa4b355b53fcad5 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

while true; do
	tail -n 2000 /tmp/wibble.log | head -n 1999 > /tmp/wibble.tail
	gnuplot plot
	convert /tmp/mp.ps /tmp/mp.png
	date
done