#!/bin/sh
# gnuplot script for printing to file(s), example usage: ./printing.sh | gnuplot

echo reset
echo set grid xtics ytics

echo set output \"datei.eps\"
echo set terminal postscript color solid eps
echo plot \"data\" with lines

echo set output \"datei.png\"
echo set terminal png size 1000, 600
echo plot \"data\" with lines

