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: |
eef8ca6565db9318e2e32ea65ea2ed79 |
User & Date: | gawthrop@users.sourceforge.net on 1997-05-01 07:45:17 |
Other Links: | branch diff | manifest | tags |
Context
1997-05-01
| ||
08:19:04 | # is now used as the comment symbol check-in: de134007b5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:45:17 | Initial revision check-in: eef8ca6565 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:35:48 | Initial revision check-in: ad3b9d6d0f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/numpar_txt2m version [9c6a339513].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 30 31 32 33 34 35 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: numpar_txt2m # Creates the deafault numerical parameters file for the system (txt) # Copyright (c) P.J.Gawthrop 1996 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo Creating $1_numpar.m #Create the numpar file complete with headers. echo "%% Numerical parameter file ($1_numpar.m)" > $1_numpar.m echo "%% Generated by MTT at `date`" >> $1_numpar.m # Global variable list echo >> $1_numpar.m echo "% Global variable list" >> $1_numpar.m sympar2global_txt2m $1 >> $1_numpar.m # Set the variables cat $1_numpar.txt >> $1_numpar.m |