How do I compare two string variables in an 'if' statement in Bash? [duplicate]
Asked Answered
C

12

839

I'm trying to get an if statement to work in Bash (using Ubuntu):

#!/bin/bash

s1="hi"
s2="hi"

if ["$s1" == "$s2"]
then
  echo match
fi

I've tried various forms of the if statement, using [["$s1" == "$s2"]], with and without quotes, using =, == and -eq, but I still get the following error:

[hi: command not found

I've looked at various sites and tutorials and copied those, but it doesn't work - what am I doing wrong?

Eventually, I want to say if $s1 contains $s2, so how can I do that?

I did just work out the spaces bit... :/ How do I say contains?

I tried

if [[ "$s1" == "*$s2*" ]]

but it didn't work.

Conformance answered 25/11, 2010 at 13:39 Comment(1)
See also #9581564Avionics
C
1185

For string equality comparison, use:

if [[ "$s1" == "$s2" ]]

For string does NOT equal comparison, use:

if [[ "$s1" != "$s2" ]]

For the a contains b, use:

if [[ $s1 == *"$s2"* ]]

(and make sure to add spaces between the symbols):

Bad:

if [["$s1" == "$s2"]]

Good:

if [[ "$s1" == "$s2" ]]
Contrastive answered 25/11, 2010 at 13:49 Comment(10)
https://mcmap.net/q/13592/-how-to-check-if-a-string-contains-a-substring-in-bash I had to use this answer to compare a variable to a fixed string.Matti
The picky guys on IRC are telling me you should use if [[ "$s1" == "$s2" ]] or case.Kinase
The double equals sign is an error in the first case. Bash tolerates it, but the portable variant is if [ "$s1" = "$s2" ]. See also Rahul's answerAvionics
[[ does not work on all shells unfortunately. On Travis CI, it gives : [[: not foundArette
Hi, I wonder why this is bad -> if ["$s1" == "$s2"] what's the point with the spaces ?Menides
POSIX test only specifies = as a string comparison operator. == is a nonportable extension. Thus, it's a better habit to use [ "$str1" = "$str2" ] rather than [ "$str1" == "$str2" ] (which won't work on baseline-POSIX shells such as dash).Depone
@Sangimed, [ is a command (actually, an alternate name for the command called test); if you run which [, you'll see there's actually an executable file for it on disk (even though the shell may provide a built-in implementation as a performance optimization). Just like you have to put a space between the name of the command ls before the name of the file you want it to print, you need to put a space after the name of the [ command and its first argument, and between each argument it's passed (if invoked as [ rather than test, it expects its last argument to be ]).Depone
nice work......Shoemaker
@Sangimed, that is so helpful! I've been wondering about that for years! I've been running man test for a long time, but I just ran man [ and it works too! I had NO IDEA!Concordia
Probably the best example of a good answer on all of Stack Overflow as per my opinion. To the point yet covers the broader picture and even addresses the most probable questions from the reader.Bicarb
B
211

You should be careful to leave a space between the sign of '[' and double quotes where the variable contains this:

if [ "$s1" == "$s2" ]; then
#   ^     ^  ^     ^
   echo match
fi

The ^s show the blank spaces you need to leave.

Bessiebessy answered 29/1, 2013 at 15:16 Comment(3)
Many thanks for pointing out the necessary space. Solved my problem. Just started bash today, seems to be a lot of times spaces can cause an error, i.e declaring variables etc.Over
Bonus point for including the ; then and fi parts.Tuckie
== doesn't work on ash, dash, or other places baseline POSIX implementations of test. Use = instead.Depone
N
190

You need spaces:

if [ "$s1" == "$s2" ]
Nawrocki answered 25/11, 2010 at 13:40 Comment(4)
Just wanted to say to make sure to leave a space between the beginning and ending square brackets and the "$s1" == "$s2" statement or it will not work. Also, this works too: if test "$s1" = "$s2" Forcemeat
It's all about space :))Acme
this first comment by @Forcemeat fixed the problem for me. Thanks!!Systaltic
== doesn't work on ash, dash, or other places baseline POSIX implementations of test. Use = instead.Depone
M
46

I suggest this one:

if [ "$a" = "$b" ]

Notice the white space between the openning/closing brackets and the variables and also the white spaces wrapping the '=' sign.

Also, be careful of your script header. It's not the same thing whether you use

#!/bin/bash

or

#!/bin/sh

Here's the source.

Meaty answered 27/11, 2014 at 14:29 Comment(4)
Upvote, but always be careful when reading the ABS. Linking to a more authoritative source would probably be preferred.Avionics
Thanks for the advice, sure a more authorative source more accurate.Meaty
/bin/sh: 1: [: missing ]Ingridingrim
@holms, that doesn't happen with the OP's code when used precisely as given here. You'll need to show your exact usage.Depone
G
42

Bash 4+ examples. Note: not using quotes will cause issues when words contain spaces, etc. Always quote in Bash IMO.

Here are some examples Bash 4+:

Example 1, check for 'yes' in string (case insensitive):

if [[ "${str,,}" == *"yes"* ]] ;then

Example 2, check for 'yes' in string (case insensitive):

if [[ "$(echo "$str" | tr '[:upper:]' '[:lower:]')" == *"yes"* ]] ;then

Example 3, check for 'yes' in string (case sensitive):

 if [[ "${str}" == *"yes"* ]] ;then

Example 4, check for 'yes' in string (case sensitive):

 if [[ "${str}" =~ "yes" ]] ;then

Example 5, exact match (case sensitive):

 if [[ "${str}" == "yes" ]] ;then

Example 6, exact match (case insensitive):

 if [[ "${str,,}" == "yes" ]] ;then

Example 7, exact match:

 if [ "$a" = "$b" ] ;then
Guildroy answered 28/5, 2018 at 19:37 Comment(1)
Great answer. Bet it would get more upvotes if it wasn't so far away from the top.Dispenser
A
29

This question has already great answers, but here it appears that there is a slight confusion between using single equal (=) and double equals (==) in

if [ "$s1" == "$s2" ]

The main difference lies in which scripting language you are using. If you are using Bash then include #!/bin/bash in the starting of the script and save your script as filename.bash. To execute, use bash filename.bash - then you have to use ==.

If you are using sh then use #!/bin/sh and save your script as filename.sh. To execute use sh filename.sh - then you have to use single =. Avoid intermixing them.

Accra answered 29/3, 2016 at 8:42 Comment(6)
The assertion "you have to use ==" is incorrect. Bash supports both = and ==. Also, if you have #!/bin/bash at the start of your script, you can make it executable and run it like ./filename.bash (not that the file extension is important).Emancipation
Perfect, I think I have to delete this answer now but it will be very helpful if you explain why this is not working without making the file executable and running by adding sh/bash before the filename?Accra
This is confused about the significance of the shebang and the file name. If you have correctly put #!/bin/sh or #!/bin/bash as the first line of the script, you simply run it with ./filename and the actual file name can be completely arbitrary.Avionics
Now this is getting interesting,even if you don't add any shebang and any extension and execute it using "bash/sh filename" it is working no matter what you use single equal or double equals.One more thing if you make the same file(without shebang and any extension) executable then you can execute it like ./filename (no matter of single or double equals).(Tried it on Arch linux with bash 4.3.46).Accra
If you execute the file by running say "bash filename" - then you are just passing 'filename' as a parameter to the program 'bash' - which of course will result in bash running it. However if you set 'filename' execute permission, and try to run it by eg './filename' - then you are relying on the default 'execute' behaviour of your current command shell - which probably requires the "#!(shell)" line at the start of the script, in order to work.Keynote
It's falso to say that you "have to use" == in bash -- bash supports both the POSIX syntax and the extended syntax, so = works in both places, whereas == works only in extended shells.Depone
C
20

I would suggest:

#!/bin/bash

s1="hi"
s2="hi"

if [ $s1 = $s2 ]
then
  echo match
fi

Without the double quotes and with only one equals.

Cecilacecile answered 25/11, 2010 at 13:42 Comment(4)
Yes that's true, I missed the spaces. With "[ $s1 = $s2 ]" it works.Cecilacecile
Why would you omit the double quotes? They are optional but harmless in this limited specific case, but removing them would be a serious bug in many real-world situations. See also #10067766Avionics
Try with s1='*' and s2='*', and you'll see that leaving out the double quotes is a serious mistake.Depone
I got same behavior with = or == regardless of quotes. I'm not sure if this is shell specific, I am using zsh on my mac OS version : 10.15.7 (19H15)Doggone
D
14
$ if [ "$s1" == "$s2" ]; then echo match; fi
match
$ test "s1" = "s2" ;echo match
match
$
Dimer answered 25/11, 2010 at 13:52 Comment(1)
The double equals sign is tolerated in Bash, but not in some other dialects. For portability, the single equals sign should be preferred, and if you target Bash only, the double brackets [[ extension would be superior for versatility, robustness, and convenience.Avionics
S
8

I don't have access to a Linux box right now, but [ is actually a program (and a Bash builtin), so I think you have to put a space between [ and the first parameter.

Also note that the string equality operator seems to be a single =.

Stedman answered 25/11, 2010 at 13:43 Comment(2)
The symbol [ was a link to /bin/test at one time (or perhaps vice versa). That is apparently no longer the case on ubuntu 16.04; no idea where or when the change occurred.Buddle
I believe Prisoner 13 was incorrect. '[' is equivalent to 'test' in Ubuntu v20, with the requirement that the last argument must be ']'.Trophozoite
K
7

This is more a clarification than an answer! Yes, the clue is in the error message:

[hi: command not found

which shows you that your "hi" has been concatenated to the "[".

Unlike in more traditional programming languages, in Bash, "[" is a command just like the more obvious "ls", etc. - it's not treated specially just because it's a symbol, hence the "[" and the (substituted) "$s1" which are immediately next to each other in your question, are joined (as is correct for Bash), and it then tries to find a command in that position: [hi - which is unknown to Bash.

In C and some other languages, the "[" would be seen as a different "character class" and would be disjoint from the following "hi".

Hence you require a space after the opening "[".

Keynote answered 13/8, 2015 at 10:26 Comment(0)
C
5

Use:

#!/bin/bash

s1="hi"
s2="hi"

if [ "x$s1" == "x$s2" ]
then
  echo match
fi

Adding an additional string inside makes it more safe.

You could also use another notation for single-line commands:

[ "x$s1" == "x$s2" ] && echo match
Cyclamate answered 25/11, 2010 at 13:47 Comment(2)
What does it mean "more safe"? It is important to explain any such qualification, for sake of completeness and clarity.Bildungsroman
the truth it's not safer, now I know that would be safer if you would not quote it and this way prevent syntax error if one of them was emptyCyclamate
O
3

For a version with pure Bash and without test, but really ugly, try:

if ( exit "${s1/*$s2*/0}" )2>/dev/null
then
   echo match
fi

Explanation: In ( )an extra subshell is opened. It exits with 0 if there was a match, and it tries to exit with $s1 if there was no match which raises an error (ugly). This error is directed to /dev/null.

Obsolescent answered 20/2, 2014 at 13:57 Comment(2)
Not bad at all. Like the explanation and the sed regexp like. I never need to use subshell that way. As i know you can get the output with command or $(command). Im sure you can TEST it then make it better.Nightwear
This is trivially broken in the case where s2 contains globs: to fix this, you need to quote the expansion $s2: "${s1/*"$s2"*/0}". But there are other subtle bugs that are impossible to fix: e.g., if s1 is a list of 0's: s1=000000; s2=some_other_stuff will claim a match. So I would highly recommend against using this method! Another bug: s1=--; s2=stuff. Starting from bash 4.4, s1=--help; s2=stuff would also spam standard output.Perren

© 2022 - 2024 — McMap. All rights reserved.