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.

I'm trying to learn shell scripting and following the tutorials on tutorialspoint when I can across this problem with arithmetic comparison.

$VAL1=10
$VAL2=20
$VAL3=10

if [ $VAL1 == $VAL2 ]
then
    echo "equal"
else
    echo "not equal"
fi

but I got a [: ==: unexpected operator I'm not quit sure why the comparison operator did not work. I know I can also use rational operators, but I just want to know why == is not defined.

share|improve this question
as your title says ksh (but your tag says bash) , you can use == inside of (( ... == ... )) tests (which I also believe are OK in bash). Good luck. – shellter Dec 3 '12 at 2:03

1 Answer

You want to change it to:

VAL1=10
VAL2=20
VAL3=10

if [ "$VAL1" -eq "$VAL2" ]
then
    echo "equal"
else
    echo "not equal"
fi

Explanations:

  • Don't add the $ for the lvalue (variable being assigned) in an assignment.
  • Always wrap your variables with double-quotes in tests. The [: ==: unexpected operator error you got is because, since VAL1 / VAL2 were not assigned properly earlier, ksh expansion of your test actually ends up resolving to this: if [ == ] - (but you see that it's actually not a problem about == being undefined)
  • Use the following for numeric comparisons instead of the == notation:
    • -eq (==)
    • -ne (!=)
    • -gt (>)
    • -ge (>=)
    • -lt (<)
    • -le (<=)
share|improve this answer
Thank you for the quick respond. – Jack Dec 3 '12 at 0:58
@Jack np =) if you've found the answer useful, you can upvote it / accept it! – sampson-chen Dec 3 '12 at 4:19

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.