9
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
40
|
# Copyright (c) P.J.Gawthrop, 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 2000/04/05 07:37:27 peterg
## *** empty log message ***
##
## Revision 1.3 1999/08/18 06:15:48 peterg
## Stripped down to just representations menu - see mtt_make_menu
##
## Revision 1.2 1999/03/09 00:03:19 peterg
## Revisions for xmtt
##
## Revision 1.1 1998/10/20 08:13:14 peterg
## Initial revision
##
###############################################################
sep='|'; # Separates the languages from the rest.
# Create reps menu
awk --field-separator=$sep '{
# Find the rep and the title
split($1,REP," ");
rep=REP[1];
# find the languages
N=split($2,LANG," ");
|
>
>
>
|
|
9
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
40
41
42
43
|
# Copyright (c) P.J.Gawthrop, 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 2000/12/28 12:39:34 peterg
## Put under RCS
##
## Revision 1.4 2000/04/05 07:37:27 peterg
## *** empty log message ***
##
## Revision 1.3 1999/08/18 06:15:48 peterg
## Stripped down to just representations menu - see mtt_make_menu
##
## Revision 1.2 1999/03/09 00:03:19 peterg
## Revisions for xmtt
##
## Revision 1.1 1998/10/20 08:13:14 peterg
## Initial revision
##
###############################################################
sep='|'; # Separates the languages from the rest.
# Create reps menu
gawk --field-separator=$sep '{
# Find the rep and the title
split($1,REP," ");
rep=REP[1];
# find the languages
N=split($2,LANG," ");
|