9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 2000/11/02 18:53:46 peterg
## Added NOPAR words to unwanted list.
##
## Revision 1.3 2000/10/16 09:41:29 peterg
## Fixed bug with printing a blank line.
##
## Revision 1.2 2000/10/16 09:10:08 peterg
|
>
>
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 2000/11/03 14:57:06 peterg
## Corrected regexp notvar
##
## Revision 1.4 2000/11/02 18:53:46 peterg
## Added NOPAR words to unwanted list.
##
## Revision 1.3 2000/10/16 09:41:29 peterg
## Fixed bug with printing a blank line.
##
## Revision 1.2 2000/10/16 09:10:08 peterg
|
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
for (j=1;j<=i;j++){
printf("%s%s", comma, sysname[j]);
comma=",";
}
printf("\n")
}' < mtt_sympar.txt >$filename
|
<
<
<
<
<
<
<
|
84
85
86
87
88
89
90
|
for (j=1;j<=i;j++){
printf("%s%s", comma, sysname[j]);
comma=",";
}
printf("\n")
}' < mtt_sympar.txt >$filename
|