Usually, I use square brackets in the if statement:

if [ "$name" = 'Bob' ]; then ...

But, when I check if grep succeeded I don't use the square brackets:

if grep -q "$text" $file ; then ...

When the square brackets are necessary in the if statement?

link|improve this question

Single square brackets are compatible across several shells, however a few of them, including Bash, support the preferred double square bracket. See BashFAQ/031 for more information. Also see help '[' – Dennis Williamson Jan 19 at 22:16
feedback

3 Answers

up vote 6 down vote accepted

The square brackets are a synonym for the test command. An if statement checks the exit status of a command in order to decide which branch to take. grep -q "$text" is a command, but "$name" = 'Bob' is not--it's just an expression. test is a command, which takes an expression and evaluates it:

if test "$name" = 'Bob'; then ...

Since square brackets are a synonym for the test command, you can then rewrite it as your original statement:

if [ "$name" = 'Bob' ]; then ...
link|improve this answer
1  
really nice explanation. +1 – Jaypal Singh Jan 19 at 22:36
@chepner: Why if $boolean_var ; then ... doesn't require brackets? – Misha Moroshko Jan 20 at 8:14
2  
@misha, if your $boolean_var has the value "true" or "false", it works because you're running the command true or false. – glenn jackman Jan 20 at 16:16
feedback

[ is actually a command, equivalent to the test command; it's not part of the shell syntax.

An if statement executes a command and executes the then part if the command succeeds, or the else part (if any) if it fails. (A command succeeds if it exits with a status ($?) of 0, fails if it exits with a non-zero status.)

In

if [ "$name" = 'Bob' ]; then ...

the command is

[ "$name" = 'Bob' ]

(You could execute that same command directly, without the if.)

In

if grep -q "$text" $file ; then ...

the command is

grep -q "$text" $file

man [ or man test for more information.

link|improve this answer
+1 to you too sir! – Jaypal Singh Jan 19 at 22:39
feedback

The best way to think of the [ ... ] syntax, is to consider [ to be a program - which it is!

Check this out:

~ $ ls /usr/bin/\[ 
/usr/bin/[

on the other hand, you're probably not using that version of it since bash also provides [ as a shell built-in.

Anyway, to answer your question: What if does is run the command you give it and see it the return value is 0 or not. You use [ to do other, more interesting comparisons such as string comparisons. See man [ and man bash.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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