11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1998/07/29 11:09:39 peterg
## Now matches ^$1$ not $1!
##
## Revision 1.2 1998/03/08 21:02:55 peterg
## Now does multiple crs.
##
# Revision 1.1 1997/03/20 12:23:21 peterg
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2000/02/07 15:48:33 peterg
## Initial revision
##
## Revision 1.3 1998/07/29 11:09:39 peterg
## Now matches ^$1$ not $1!
##
## Revision 1.2 1998/03/08 21:02:55 peterg
## Now does multiple crs.
##
# Revision 1.1 1997/03/20 12:23:21 peterg
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
echo "Creating $1_cr.txt"
rm -f mtt_error
# This is the main transformation using gawk
# And remove crs with same name as system
awk -f $MTTPATH/trans/awk/lbl2cr.awk $1_lbl.txt 2>mtt_error.txt |\
grep -v "^$1$" \
> $1_cr.txt
# Now invoke the standard error handling.
mtt_error mtt_error.txt
|
|
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
echo "Creating $1_cr.txt"
rm -f mtt_error
# This is the main transformation using gawk
# And remove crs with same name as system
gawk -f $MTTPATH/trans/awk/lbl2cr.awk $1_lbl.txt 2>mtt_error.txt |\
grep -v "^$1$" \
> $1_cr.txt
# Now invoke the standard error handling.
mtt_error mtt_error.txt
|