Overview
Comment: | Replaced printf by echo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ece6b232149a8639df3a05b2324b585c |
User & Date: | gawthrop@users.sourceforge.net on 2000-08-01 07:34:33 |
Other Links: | branch diff | manifest | tags |
Context
2000-08-01
| ||
09:30:16 | Moved include files check-in: de96e54ef3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:34:33 | Replaced printf by echo check-in: ece6b23214 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-07-31
| ||
19:58:56 | Now invokes mtt.m to create the representation. check-in: ae327c5655 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cr_txt2r from [4a1d0bf51f] to [e51263b8b0].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.9 2000/02/16 15:58:17 peterg ## Set level='' not $2 ## ## Revision 1.8 1998/11/20 09:48:31 peterg ## Remove the _lower stuff -- see idf this works now. ## ## Revision 1.7 1998/04/14 17:46:28 peterg | > > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.10 2000/02/25 09:10:12 peterg ## Changed -e to -f in if [ -f "$crf" ]; then ## -- cuased probs on SUN ## ## Revision 1.9 2000/02/16 15:58:17 peterg ## Set level='' not $2 ## ## Revision 1.8 1998/11/20 09:48:31 peterg ## Remove the _lower stuff -- see idf this works now. ## ## Revision 1.7 1998/04/14 17:46:28 peterg |
︙ | ︙ | |||
107 108 109 110 111 112 113 | # }' $1_cr.txt >> $crfile ## list of the crs crs=`cat $1_cr.txt` for cr in $crs; do crf=$cr'_cr.r' if [ -f "$crf" ]; then | | > | > | 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | # }' $1_cr.txt >> $crfile ## list of the crs crs=`cat $1_cr.txt` for cr in $crs; do crf=$cr'_cr.r' if [ -f "$crf" ]; then ## printf "\045 (%s exists)\n" $crf >> $crfile echo "% ($crf exists)\n" >> $crfile else ## printf 'in "%s.cr";\n' $cr >> $crfile echo 'in "'$cr.cr'";\n' >> $crfile fi done ## fi echo 'END;' >> $crfile fi # Now invoke the standard error handling. #mtt_error mtt_error.txt |