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
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1997/05/22 09:42:48 peterg
## Returns 0 if no names.
##
## Revision 1.2 1997/05/22 09:28:22 peterg
## Removed trailing , in output.
##
## Revision 1.1 1997/05/22 08:48:21 peterg
## Initial revision
##
###############################################################
awk '
{
name_index[$4"_"$3]=$2;
}
END{
M=split(names,xynames,":");
if (M==0)
printf("0\n")
else
{
|
>
>
>
|
|
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
40
41
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 1997/12/04 22:10:18 peterg
## Handles argument list - variable names.
##
## Revision 1.3 1997/05/22 09:42:48 peterg
## Returns 0 if no names.
##
## Revision 1.2 1997/05/22 09:28:22 peterg
## Removed trailing , in output.
##
## Revision 1.1 1997/05/22 08:48:21 peterg
## Initial revision
##
###############################################################
awk '
{
name_index[$4]=$2;
}
END{
M=split(names,xynames,":");
if (M==0)
printf("0\n")
else
{
|