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: |
baf76a675825ff8428375117d277aa42 |
User & Date: | gawthrop@users.sourceforge.net on 1997-05-03 14:55:17 |
Other Links: | branch diff | manifest | tags |
Context
1997-05-03
| ||
15:01:42 | Don't write out RCS headers. check-in: 614fe41b93 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:55:17 | Initial revision check-in: baf76a6758 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:17:13 | Now copies c utilities (eg dsvdcmp.c) from $MTTPATH/trans/c. check-in: e7e0006fb2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/struc2input_txt2txt version [eff1d6fb0b].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: struc2input_txt2txt # Creates the deafault numerical parameters file for the system (txt) # Copyright (c) P.J.Gawthrop 1997 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo Creating $1_input.txt #Create the input file complete with headers. echo "# Numerical parameter file ($1_input.txt)" > $1_input.txt echo "# Generated by MTT at `date`" >> $1_input.txt cat $MTTPATH/trans/rcs_header.txt >> $1_input.txt #Write out the defaults. awk '{i++; if($1=="input") print "u(" i ") =\t1.0; \# " $3 " (Default value)"}' $1_struc.txt >> $1_input.txt |