1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
+
+
+
+
-
+
+
+
+
+
|
#!/bin/sh
## Converts abg.fig to sensitivity version
## Copyright (C) 1999 by Peter J. Gawthrop
filename=$1_abg.fig
sfilename=s$filename
if [ -f "$sfilename" ]; then
echo $sfilename exists -- no action taken
exit
fi
if [ -f $filename ]; then
echo Using existing $filename
else
echo Creating $sfilename
echo "Looking for $1 in library"
mtt -q compcopy $1
fi
echo Creating $sfilename
awk '
function modulo10(x) {
return x-int(x/10)*10
}
{
level_index = 4;
|