Hallo,
die else-Anweisung funktioniert nicht. Mach ich irgendwas falsch?
#!/bin/ksh
while true
do
read var
if [ "var" != "exit" ]
then echo $var| tr '[A-Z]' '[a-z]'
else exit
fi
done
Gruß
Hallo,
die else-Anweisung funktioniert nicht. Mach ich irgendwas falsch?
#!/bin/ksh
while true
do
read var
if [ "var" != "exit" ]
then echo $var| tr '[A-Z]' '[a-z]'
else exit
fi
done
Gruß