Overview
Comment: | Removed END; statement |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bd87408f1ecc2936d7ce57bf07de6c01 |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-03 21:11:44 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-03
| ||
21:19:02 | Recursice generation of Constitutive Relationship files. check-in: 8d230e463a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
21:11:44 | Removed END; statement check-in: bd87408f1e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-11-02
| ||
10:22:54 | Now browses crs. check-in: acead5e810 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lbl2cr_txt2r from [1ea9d202fe] to [a6453bab2e].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo "Creating $1_cr.r" rm -f mtt_error #Write some file headers echo "%% constitutive relationship file ($1_cr.r)" > $1_cr.r echo "%% Generated by MTT at `date`" >> $1_cr.r # This is the main transformation using gawk gawk -f $MTTPATH/trans/awk/lbl2cr.awk <$1_lbl.txt 2>mtt_error.txt | \ sh >> $1_cr.r | > > > < < | 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 36 37 38 39 40 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1996/11/02 10:20:53 peterg ## Created from lbl2sympar ## ############################################################### # Inform user echo "Creating $1_cr.r" rm -f mtt_error #Write some file headers echo "%% constitutive relationship file ($1_cr.r)" > $1_cr.r echo "%% Generated by MTT at `date`" >> $1_cr.r # This is the main transformation using gawk gawk -f $MTTPATH/trans/awk/lbl2cr.awk <$1_lbl.txt 2>mtt_error.txt | \ sh >> $1_cr.r # Now invoke the standard error handling. #mtt_error mtt_error.txt |