#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: gdat2ps
# Converts a data file in gplot format to a ps file
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1996/08/10 14:12:48 peter
## Revised to new dat format: [x y x y x y] in place of [x y y y].
##
## Revision 1.2 1996/08/10 12:54:56 peter
## Reorganised data file for gnuplot input.
##
## Revision 1.1 1996/08/10 09:52:39 peter
## Initial revision
##
###############################################################
echo Creating $1.ps
gnuplot << EOF
set terminal postscript
set output '$1.ps'
set grid
# set size 0.2,0.2
set title "$1. Generated by MTT on $(date)"
plot '$1.gdat' with lines
exit
EOF