9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright (c) P.J.Gawthrop 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1996/10/20 19:19:50 peterg
## Initial revision
##
###############################################################
#Inform user
|
>
>
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright (c) P.J.Gawthrop 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1996/10/20 19:22:41 peterg
## Cleans up after itself.
##
## Revision 1.1 1996/10/20 19:19:50 peterg
## Initial revision
##
###############################################################
#Inform user
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
awk '/_cause.m/{split($1,a,"_");print(a[1])}' |\
sed 's/^zero$/0/' |\
sed 's/^one$/1/' |\
sort -u >mtt_tmp2
# Print the non-standard components
comm mtt_tmp1 mtt_tmp2 |\
awk 'BEGIN{FS="\t"}{if (length($1)>0) print "mtt", $1, "abg m"}' \
>>$1_sub.sh
# Clean up mtt_tmp files
rm -f mtt_tmp1 mtt_tmp2
|
|
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
awk '/_cause.m/{split($1,a,"_");print(a[1])}' |\
sed 's/^zero$/0/' |\
sed 's/^one$/1/' |\
sort -u >mtt_tmp2
# Print the non-standard components
comm mtt_tmp1 mtt_tmp2 |\
awk 'BEGIN{FS="\t"}{if (length($1)>0) print "mtt -q", $1, "abg m"}' \
>>$1_sub.sh
# Clean up mtt_tmp files
rm -f mtt_tmp1 mtt_tmp2
|