12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
###############################################################
## Version control history
###############################################################
## $Id$
##
## $Log$
## Revision 1.18 2000/09/15 08:09:42 peterg
## Removed another debugging line
##
## Revision 1.17 2000/09/15 08:06:17 peterg
## Removed debug lines
##
## Revision 1.16 2000/09/02 15:55:51 peterg
|
>
>
>
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
###############################################################
## Version control history
###############################################################
## $Id$
##
## $Log$
## Revision 1.19 2000/10/12 19:25:39 peterg
## Now generateds the _aliased.txt file
##
## Revision 1.18 2000/09/15 08:09:42 peterg
## Removed another debugging line
##
## Revision 1.17 2000/09/15 08:06:17 peterg
## Removed debug lines
##
## Revision 1.16 2000/09/02 15:55:51 peterg
|
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
fi
echo "END;" >> $1_ese.r
echo "END;" >> $1_def.r
# Create the _alised file
echo Creating $1_aliased.txt
mv mtt_aliased.txt $1_aliased.txt
# Sort the struc file
mv $structurefile junk
sort -k 1,1 -k 2,2n junk >$structurefile
# Now invoke the standard error handling.
mtt_error mtt_error.txt
|
>
|
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
fi
echo "END;" >> $1_ese.r
echo "END;" >> $1_def.r
# Create the _alised file
touch $1_aliased.txt
echo Creating $1_aliased.txt
mv mtt_aliased.txt $1_aliased.txt
# Sort the struc file
mv $structurefile junk
sort -k 1,1 -k 2,2n junk >$structurefile
# Now invoke the standard error handling.
mtt_error mtt_error.txt
|