Overview
Comment: | Minor debugging. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b339ac0d20813cacc1e4e0008b4e07c5 |
User & Date: | gawthrop@users.sourceforge.net on 1996-12-07 19:39:51 |
Other Links: | branch diff | manifest | tags |
Context
1996-12-07
| ||
20:02:43 | Fixed symbolic parameter bug. check-in: 949b025103 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:39:51 | Minor debugging. check-in: b339ac0d20 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:23:07 | Registered agian. check-in: b1169db925 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lbl2sympar_txt2r from [e2586a9030] to [e36cd23682].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## 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 | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # 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 |
︙ | ︙ | |||
37 38 39 40 41 42 43 | #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 | \ | | | 40 41 42 43 44 45 46 47 48 49 50 51 52 | #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 |