I need to write a little bash program. Now i want to use the case function but i receive the error message
./arbeit1.sh: line 26: syntax error near unexpected token ;;'
./arbeit1.sh: line 26: auswertung();;'
read auswahl
case "$auswahl" in
"1")
echo "Sternbox";;
"2")
auswertung();;
"3")
array();;
"4")
exit;;
*)
echo "Falsche Eingabe - Probieren Sie es nochmal";;
esac