Overview
| Comment: | Removed spurious "\n" from output. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2b7928b1e81c69bff866454dbef9f2ce |
| User & Date: | geraint@users.sourceforge.net on 2002-04-08 17:04:21.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-04-09
| ||
| 12:04:25 | Replaced ios:: with std::ios:: for g++-3.0 compatability. check-in: c832ca2971 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-04-08
| ||
| 17:04:21 | Removed spurious "\n" from output. check-in: 2b7928b1e8 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-04-03
| ||
| 08:36:44 | Fixed size of gnuplot x11 window (400x300) to prevent window manager from creating very, very tiny plots. check-in: d8c22a9fe1 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cr_txt2r
from [e51263b8b0]
to [50e5d67b45].
| ︙ | ︙ | |||
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.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 ## | > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.11 2000/08/01 07:34:33 peterg ## Replaced printf by echo ## ## 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 ## |
| ︙ | ︙ | |||
112 113 114 115 116 117 118 |
## 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
| | | | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
## 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)" >> $crfile
else
## printf 'in "%s.cr";\n' $cr >> $crfile
echo 'in "'$cr.cr'";' >> $crfile
fi
done
## fi
echo 'END;' >> $crfile
fi
# Now invoke the standard error handling.
#mtt_error mtt_error.txt
|