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: |
748ce71f3bc4c26ecc30474ec69bedb1 |
User & Date: | gawthrop@users.sourceforge.net on 2000-02-07 15:48:33 |
Other Links: | branch diff | manifest | tags |
Context
2000-02-08
| ||
08:40:50 | Initial revision check-in: 1282bd5438 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-02-07
| ||
15:48:33 | Initial revision check-in: 748ce71f3b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-01-26
| ||
10:11:10 | Added I component check-in: 594f3299a9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/p2oct version [5c9f2513fe].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 36 37 38 39 40 41 42 43 44 45 46 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: lbl2cr_txt2txt # Label file to constitutive relationship conversion # P.J.Gawthrop March 1997 # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1998/07/29 11:09:39 peterg ## Now matches ^$1$ not $1! ## ## Revision 1.2 1998/03/08 21:02:55 peterg ## Now does multiple crs. ## # Revision 1.1 1997/03/20 12:23:21 peterg # Initial revision # ############################################################### # Inform user echo "Creating $1_cr.txt" rm -f mtt_error # This is the main transformation using gawk # And remove crs with same name as system awk -f $MTTPATH/trans/awk/lbl2cr.awk $1_lbl.txt 2>mtt_error.txt |\ grep -v "^$1$" \ > $1_cr.txt # Now invoke the standard error handling. mtt_error mtt_error.txt |