vote up 1 vote down star

While writing a fairly simple shell script, I've tried to compare two strings. I was using /bin/sh instead of /bin/bash, and after countless hours of debugging, it turns out dash (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 uding /bin/sh? I know I can always do the opposite by using !=, but I am wondering about a cleaner, portable way.

flag

1  
You can use [[ $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 $var is empty – Johannes Schaub - litb Jul 7 at 0:36
The important part is the quotes around $var as 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 at 1:12
I understand about "$var" vs. $var, my problem was == vs. = – LiraNuna Jul 7 at 1:41
[[ ]] is reserved by POSIX, but not at all defined. It's just reserved because it's a Korn feature I think. – TheBonsai Jul 7 at 4:22

4 Answers

vote up 1 vote down check

dash is a very strict POSIX shell, if it work in dash it is almost certain it would work in other POSIX shell.

Try:

if [ "$var" = "string" ]
then
    do something
fi
link|flag
vote up 5 vote down

Why is there even a possibility that your script will be run by the "wrong" shell? I would think you could make that a pre-requisite of your product by using the standard sh-bang line at the top of your script:

#!/bin/bash

Even if a user uses a different shell, the other shells are generally still there and, if not, simply complain and state that they are a pre-req.

Exactly the same way that a specific kernel level, or the existence of awk, can be a pre-req.

For your specific question, I believe both sh and bash allow the single '=' to be used for string comparisons - that is POSIX behavior:

if [ "a" = "a" ] ; then
    echo yes
fi

yes
link|flag
vote up 1 vote down

Use = instead of ==. Comparisons are handled by test(1). /usr/bin/[ is typically a link to /usr/bin/test . The only difference is that if youb use [ in a shell script, the ] is required aswell.

Note that bash has a built-in test/[, so it doesn't actually use /usr/bin/test.

link|flag
vote up 0 vote down

you can use awk

awk 'BEGIN{
 string1="test"
 string2="tes1t"
 if(s1==s2){
    print "same string"
 }else{
    print "not same"
 }
}'
link|flag

Your Answer

Get an OpenID
or

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