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.11 2002/04/19 08:39:45 gawthrop
## Changed \# to # and \% to # to avoid warning in latest gawk version
##
## Revision 1.10 2000/12/28 12:32:06 peterg
## Put under RCS
##
## Revision 1.9 2000/11/16 13:11:06 peterg
|
>
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.12 2002/04/28 18:41:27 geraint
## Fixed [ 549658 ] awk should be gawk.
## Replaced calls to awk with call to gawk.
##
## Revision 1.11 2002/04/19 08:39:45 gawthrop
## Changed \# to # and \% to # to avoid warning in latest gawk version
##
## Revision 1.10 2000/12/28 12:32:06 peterg
## Put under RCS
##
## Revision 1.9 2000/11/16 13:11:06 peterg
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#Write out the Description
grep '[%|#]SUMMARY' $1_lbl.txt | sed 's/_/\\_/g' |\
gawk '{
printf("\\paragraph{System %s:",$2);
for (i=3;i<=NF;i++) printf("%s ",$i); print ""
print "}"
}' >> $1_lbl.tex
grep '[%|#]DESCRIPTION' $1_lbl.txt | sed 's/_/\\_/g' |\
gawk '{
for (i=2;i<=NF;i++) printf("%s ",$i); print ""
}' >> $1_lbl.tex
#Write out the aliases
cat <<EOF >> $1_lbl.tex
\paragraph{Interface information:}
\begin{description}
EOF
grep '[%|#]ALIAS' $1_lbl.txt | sed 's/_/\\_/g' |\
|
|
|
|
|
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#Write out the Description
grep '[%|#]SUMMARY' $1_lbl.txt | sed 's/_/\\_/g' |\
gawk '{
printf("\\paragraph{System %s:",$2);
for (i=3;i<=NF;i++) printf("%s ",$i); print ""
print "}"
}' >> $1_lbl.tex
# grep '[%|#]DESCRIPTION' $1_lbl.txt | sed 's/_/\\_/g' |\
# gawk '{
# for (i=2;i<=NF;i++) printf("%s ",$i); print ""
# }' >> $1_lbl.tex
#Write out the aliases
cat <<EOF >> $1_lbl.tex
\paragraph{Interface information:}
\begin{description}
EOF
grep '[%|#]ALIAS' $1_lbl.txt | sed 's/_/\\_/g' |\
|