#! /bin/csh -f

set file = "$1"; shift

gnuplot <<EOF
set xrange [0:100]
plot "${file}" using :1 with histeps
pause 300 
quit
EOF
