while:; do
read -p "please select your maths operator" choosenOperator
if [$choosenOperator == *]; then
break
So hopefully its a little clear what I'm trying to say here. Is there some way of working this so that Bash will take a user input of *, and store that in choosenOperator as the multiplication sign? It works for plus, minus etc but not for multiplication.