Knowledge Base Nr: 00099 bashsample.sh - http://www.swe-kaiser.de

Downloads:

!/bin/sh
linux: beispielscript mit auswahl einer option und 'endlosschleife' (mischkammer asm/vnx-platz)

  
# Zeitsynchronisation
netdate -v dslxs01
clock -w

#quasi endlosschleife
for i in `seq 1 100000`; do

#arbeitsplatz auswählen
echo "select arbplatz"
OPTIONS="ASM VNX"
select opt in $OPTIONS; do
echo "eingabe: $opt"
if [ "$opt" = "ASM" ]; then
echo ASM selected
break;
elif [ "$opt" = "VNX" ]; then
echo VNX selected
break;
else
echo Auswahl ungültig!
fi
done


echo Verwiegung initialisieren
cd ~
cd serial/etc/pciport
./start3534
cd ~
cd ./mischkammer/progs/
./stop
./run
./rtconfig w$opt

rmmod direct
insmod ./direct
echo starten: megamat w$opt w$opt $opt
megamat w$opt w$opt $opt

done

echo press any key ...
read dummy