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: |
7cbc8b5ed86dc066f2053348a60bcf5d |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-01 20:19:44 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-02
| ||
10:16:50 | Changed stroke length to 150 check-in: b0ce1b74d1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-11-01
| ||
20:19:44 | Initial revision check-in: 7cbc8b5ed8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:10:16 | Initial revision check-in: 0f5a9859c9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/lbl2cr_txt2r version [e0bb8fc6af].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 47 48 49 50 51 52 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: lbl2sympar_txt2r # Label file to symbolic parameters conversion # P.J.Gawthrop August 1996 # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 1996/09/12 17:18:44 peter ## Don't add an RCS header .. ## ## Revision 1.4 1996/08/30 19:01:21 peter ## Added headers to sympar file. ## ## Revision 1.3 1996/08/30 10:18:33 peter ## New path for awk script. ## ## Revision 1.2 1996/08/30 10:04:20 peter ## Included `;' in demimiter list. ## # Revision 1.1 1996/08/24 13:34:09 peter # Initial revision # ############################################################### # Inform user echo "Creating $1_sympar.r" rm -f mtt_error #Write some file headers echo "%% Symbolic parameter file ($1_sympar.r)" > $1_sympar.r echo "%% Generated by MTT at `date`" >> $1_sympar.r # This is the main transformation using gawk tr ';' ',' < $1_lbl.txt | \ gawk -f $MTTPATH/trans/awk/lbl2sympar.awk >> $1_sympar.r 2>mtt_error.txt # Now invoke the standard error handling. mtt_error mtt_error.txt |