ADDED mttroot/mtt/bin/trans/gdat2ps Index: mttroot/mtt/bin/trans/gdat2ps ================================================================== --- /dev/null +++ mttroot/mtt/bin/trans/gdat2ps @@ -0,0 +1,29 @@ +#! /bin/sh + + ###################################### + ##### Model Transformation Tools ##### + ###################################### + +# Bourne shell script: dat2ps + +# Converts a data file to a ps file + +# Copyright (c) P.J.Gawthrop, 1996. + +############################################################### +## Version control history +############################################################### +## $Id$ +## $Log$ +############################################################### + +echo Creating $1.ps + +gnuplot << EOF + set terminal postscript + set output '$1.ps' + set grid + set title "$1.dat. Generated by MTT on $(date)" + plot '$1.dat' with lines + exit +EOF