In my bash script i am trying to using the equals (=) operator as input for an IF statement, can this be done?
echo "Plese enter an operator as shown in the brackets (-)subtract, (*)Multiply, (+)Add, (/)divide, quit(=)?"
read operator
..........
if [[ $operator == '=' ]]; then
'do something'
fi