#!/bin/sh
# gnuplot script, example usage: ./plotting.sh | gnuplot
# plot the data in "data" every second

echo set grid xtics ytics
 # echo set xtics 30
 # echo set ytics 20
 while true; do

 echo plot \"data\" with lines

 sleep 1
done

