Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f2c384246dc17009ed0f070c7544d811 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-10 09:52:39 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-10
| ||
10:26:00 | Initial revision check-in: 67560661e3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:52:39 | Initial revision check-in: f2c384246d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:19:48 | Put in help, info and warranty stuff. check-in: 23d5f81efa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/gdat2ps version [1bdf63f817].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 |