10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
+
+
+
|
# Copyright (c) P.J.Gawthrop 1999
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.10 2000/10/17 12:24:02 peterg
## Three argument generic version
##
## Revision 1.9 2000/09/27 16:12:50 peterg
## Use expr to evaluate arithmetic - compatible with sh (as opposed to
## bash)
##
## Revision 1.8 2000/09/21 10:07:06 peterg
## Now correctely writes out the state into _odes.dat rep.
##
|
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
-
+
|
*)
First=1; Last=`expr $Ny + 1`
;;
esac
echo Creating $1_$2$3.dat
awk '{
gawk '{
## Extract the data
if (index($1,"#") != 1){
for (i=First;i<=Last;i++)
printf("%s ", $i);
printf("\n");
}
}' First=$First Last=$Last <$1_$2s.dat2 > $1_$2$3.dat
|