Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question
4  
Have you tried it? Did it work? – Rubens Jan 20 at 12:02
1  
Yes it does work thanks – Tricky Dicky Jan 20 at 23:04

2 Answers

up vote 2 down vote accepted

I don't understand why you could not be able to do this.

> operator==
> echo $operator
=
> if [[ $operator == '=' ]]; then echo 'ok'; fi;
ok
share|improve this answer
Sorry your right there was a bug in my code! – Tricky Dicky Jan 20 at 12:40

Try this shell.sh :

#!/bin/sh
EQUAL="=" #this is our operator
echo "Please enter operator"
read operator

if [ $operator = $EQUAL ]; then
    echo "Entered = "
else
    echo "Not = entered"
fi

Execution:

:~$ sh shell.sh
Please enter operator
=
Entered = 
:~$ sh shell.sh
Please enter operator
-
Not = entered
:~$ 

Reference to learn

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.