Overview
| Comment: | Automativally looks for base system in library |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b0e7685fe17f6578569e433860ac3939 |
| User & Date: | gawthrop@users.sourceforge.net on 1999-11-16 22:09:01.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1999-11-16
| ||
| 22:15:55 | Changed compcopy to test for abg, not lbl file check-in: 5e15518d03 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 22:09:01 | Automativally looks for base system in library check-in: b0e7685fe1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 21:51:26 | Initial revision check-in: 4315e39664 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/abg2sensitivity_fig
from [15a0671b8f]
to [868b237a9b].
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/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
else
| > > > > | > > > > | 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 "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;
|
| ︙ | ︙ |