I am trying to compare two strings in a simple shell script.
I was using /bin/sh instead of /bin/bash, and after countless hours of debugging, it turns out sh (which is actually dash) can't handle this block of code:
if [ "$var" == "string" ]
then
do something
fi
What is a portable way to compare strings using /bin/sh? I know I can always do the opposite by using !=, but I am wondering about a cleaner, portable way.
[[ $var == "string" ]], which is POSIX, but optional (afaik). Or you use[ "$var" = "string" ]. Note the""around the variable in the single-bracket edition: it's required in case$varis empty – Johannes Schaub - litb Jul 7 '09 at 0:36$varas litb mentioned. Without the quotes,[ $var = "value" ]becomes[ = "value" ]which confuses the shell pretty horrendously. You will probably see an error like "[: =: unary operator expected" when you encounter an empty variable otherwise. – D.Shawley Jul 7 '09 at 1:12