For some reason this script prints "string are equal"
#!/bin/bash
A='foo'
B='bar'
if [ $A=$B ];
then
echo 'strings are equal'
fi
What am I doing wrong?
|
feedback
|
This question came from our site for system administrators and desktop support professionals.
|
You have to leave a space around the equal sign:
Edit: Please notice also the quotation marks around the variables. Without them you will get into trouble if one of them is empty. Otherwise the test is interpreted as test if the string "foo=bar" has a length>0.
| |||||
feedback
|
|
You're supposed to have spaces around the equals character:
Also, you ought to quote the variables, like this:
| |||
|
feedback
|