#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: gdat2view
# Converts a data file in gplot format to view
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
echo Creating view of $1
gnuplot << EOF
set grid
set title "$1. Generated by MTT on $(date)"
plot '$1.gdat' with lines
pause 100000
EOF