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$
###############################################################
system=$1
# Inform user
|
>
>
>
|
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.1 1998/05/13 08:56:28 peterg
## Initial revision
##
###############################################################
system=$1
# Inform user
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
echo "from $1_simpar.txt" >> $1_simpar.h
echo '*/' >> $1_simpar.h
echo >> $1_simpar.h
# Now do the parameters
sed 's/ //g' $1_simpar.txt |\
awk -F '=' '/=/ {print "#define", $1, $2}' >> $1_simpar.h
|
|
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
echo "from $1_simpar.txt" >> $1_simpar.h
echo '*/' >> $1_simpar.h
echo >> $1_simpar.h
# Now do the parameters
sed 's/ //g' $1_simpar.txt |\
gawk -F '=' '/=/ {print "#define", $1, $2}' >> $1_simpar.h
|