10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1998/07/27 08:38:11 peterg
## Just look for / in the relevant field.
##
## Revision 1.1 1998/07/17 17:04:50 peterg
## Initial revision
##
###############################################################
# Regexp for an alias
alias='^[#%]ALIAS'
grep $alias $1_lbl.txt | awk '{if (match($3,"/")>0) print "mtt -q compcopy " $3}'
|
>
>
>
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1998/07/28 11:23:31 peterg
## Put / explicitly in awk.
##
## Revision 1.2 1998/07/27 08:38:11 peterg
## Just look for / in the relevant field.
##
## Revision 1.1 1998/07/17 17:04:50 peterg
## Initial revision
##
###############################################################
# Regexp for an alias
alias='^[#%]ALIAS'
grep $alias $1_lbl.txt | gawk '{if (match($3,"/")>0) print "mtt -q compcopy " $3}'
|