11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 1998/11/18 11:34:24 peterg
## Cleaned up to:
## work properly for no globals
## no need to repeat las global
##
## Revision 1.4 1998/07/26 10:44:08 peterg
## Now strips comment lines first
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.6 1998/11/18 15:07:37 peterg
## Space after all globals
##
## Revision 1.5 1998/11/18 11:34:24 peterg
## Cleaned up to:
## work properly for no globals
## no need to repeat las global
##
## Revision 1.4 1998/07/26 10:44:08 peterg
## Now strips comment lines first
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Initial revision
#
###############################################################
#Write out the variables in matlab global format
strip_comments <$1_sympars.txt |\
awk '
{i++;
if ((i==1)&&(NF>0)) {
printf ("global");
globals_exist=1
}
if (NF>0)
printf (" ...\n %s", tolower($1));
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Initial revision
#
###############################################################
#Write out the variables in matlab global format
strip_comments <$1_sympars.txt |\
gawk '
{i++;
if ((i==1)&&(NF>0)) {
printf ("global");
globals_exist=1
}
if (NF>0)
printf (" ...\n %s", tolower($1));
|