10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 1998/07/17 16:31:37 peterg
## Ignore component aliases (with /)
##
## Revision 1.4 1998/07/03 15:21:26 peterg
## Replace sub by gsub -- need to replace ALL ,
##
## Revision 1.3 1998/07/03 13:49:03 peterg
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.6 1998/07/17 19:46:56 peterg
## No change
##
## Revision 1.5 1998/07/17 16:31:37 peterg
## Ignore component aliases (with /)
##
## Revision 1.4 1998/07/03 15:21:26 peterg
## Replace sub by gsub -- need to replace ALL ,
##
## Revision 1.3 1998/07/03 13:49:03 peterg
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#Create the alias file complete with headers.
echo "# Alias file ($1_alias.txt)" > $1_alias.txt
echo "# Generated by MTT at `date`" >> $1_alias.txt
#Write out the variables
grep '[%|#]ALIAS' $1_lbl.txt |\
awk '{
if (match($3,"/")==0){
if (match($2,"\\$")==0){
alias=$2; name =$3
}
else{
alias=$3; name =$2
}
|
|
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#Create the alias file complete with headers.
echo "# Alias file ($1_alias.txt)" > $1_alias.txt
echo "# Generated by MTT at `date`" >> $1_alias.txt
#Write out the variables
grep '[%|#]ALIAS' $1_lbl.txt |\
gawk '{
if (match($3,"/")==0){
if (match($2,"\\$")==0){
alias=$2; name =$3
}
else{
alias=$3; name =$2
}
|