Bash if...else Statement
Updated on
•6 min read

This article will walk you through the basics of the bash if...else statement and explain you how to use it in your shell scripts.
Decision-making is one of the most fundamental concepts of computer programming. Like in any other programming language, if, if...else, if...elif...else, and nested if statements in Bash are used to execute code when a specific condition is met.
if Statement
Bash if conditionals can have different forms. The most basic if statement takes the following form:
if TEST-COMMAND
then
STATEMENTS
fi
The if statement starts with the if keyword followed by the conditional expression and the then keyword. The statement ends with the fi keyword.
If the TEST-COMMAND evaluates to True, the STATEMENTS are executed. If the TEST-COMMAND returns False, nothing happens; the STATEMENTS are ignored.
Generally, it is always good practice to indent your code and separate code blocks with blank lines. Most people choose to use either 4-space or 2-space indentation. Indentations and blank lines make your code more readable and organized.
Let’s look at the following example script that checks whether a given number is greater than 10:
#!/bin/bash
echo -n "Enter a number: "
read VAR
if [[ $VAR -gt 10 ]]
then
echo "The variable is greater than 10."
fi
Save the code in a file and run it from the command line:
bash test.shThe script will prompt you to enter a number. If, for example, you enter 15, the test command will be evaluated as true because 15 is greater than 10, and the echo
command inside the then clause will be executed.
The variable is greater than 10.
if...else Statement
The Bash if...else statement takes the following form:
if TEST-COMMAND
then
STATEMENTS1
else
STATEMENTS2
fi
If the TEST-COMMAND evaluates to True, the STATEMENTS1 will be executed. Otherwise, if TEST-COMMAND returns False, the STATEMENTS2 will be executed. You can have only one else clause in the statement.
Let’s add an else clause to the previous example script:
#!/bin/bash
echo -n "Enter a number: "
read VAR
if [[ $VAR -gt 10 ]]
then
echo "The variable is greater than 10."
else
echo "The variable is equal or less than 10."
fi
If you run the code and enter a number, the script will print a different message based on whether the number is greater or less/equal to 10.
if...elif...else Statement
The Bash if...elif...else statement takes the following form:
if TEST-COMMAND1
then
STATEMENTS1
elif TEST-COMMAND2
then
STATEMENTS2
else
STATEMENTS3
fi
If the TEST-COMMAND1 evaluates to True, the STATEMENTS1 will be executed. If the TEST-COMMAND2 evaluates to True, the STATEMENTS2 will be executed. If none of the test commands are evaluated as True, the STATEMENTS2 will be executed.
You can have one or more elif clauses in the statement. The else clause is optional.
The conditions are evaluated sequentially. Once a condition returns True, the remaining conditions are not tested, and program control moves to the end of the if statements.
Let’s add an elif clause to the previous script:
#!/bin/bash
echo -n "Enter a number: "
read VAR
if [[ $VAR -gt 10 ]]
then
echo "The variable is greater than 10."
elif [[ $VAR -eq 10 ]]
then
echo "The variable is equal to 10."
else
echo "The variable is less than 10."
fi
Nested if Statements
Bash allows you to nest if statements within if statements.
You can place multiple if statements inside another if statement.
The following script will prompt you to enter three numbers and print the largest number among the three numbers.
#!/bin/bash
echo -n "Enter the first number: "
read VAR1
echo -n "Enter the second number: "
read VAR2
echo -n "Enter the third number: "
read VAR3
if [[ $VAR1 -ge $VAR2 ]]
then
if [[ $VAR1 -ge $VAR3 ]]
then
echo "$VAR1 is the largest number."
else
echo "$VAR3 is the largest number."
fi
else
if [[ $VAR2 -ge $VAR3 ]]
then
echo "$VAR2 is the largest number."
else
echo "$VAR3 is the largest number."
fi
fi
Here is how the output will look like:
Enter the first number: 4
Enter the second number: 7
Enter the third number: 2
7 is the largest number.
case statement
instead of nested if statements.Multiple Conditions
The logical OR and AND operators allow you to use multiple conditions in the if statements.
Here is another version of the script to print the largest number among the three numbers. In this version, instead of the nested if statements, we’re using the logical AND (&&) operator.
#!/bin/bash
echo -n "Enter the first number: "
read VAR1
echo -n "Enter the second number: "
read VAR2
echo -n "Enter the third number: "
read VAR3
if [[ $VAR1 -ge $VAR2 ]] && [[ $VAR1 -ge $VAR3 ]]
then
echo "$VAR1 is the largest number."
elif [[ $VAR2 -ge $VAR1 ]] && [[ $VAR2 -ge $VAR3 ]]
then
echo "$VAR2 is the largest number."
else
echo "$VAR3 is the largest number."
fi
Test Operators
In Bash, the test command takes one of the following syntax forms:
test EXPRESSION
[ EXPRESSION ]
[[ EXPRESSION ]]
To make the script portable, prefer using the old test [ command, which is available on all POSIX shells. The new upgraded version of the test command [[ (double brackets) is supported on most modern systems using Bash, Zsh, and Ksh as a default shell.
To negate the test expression, use the logical NOT (!) operator. When comparing strings
, always use single or double quotes to avoid word splitting and globbing issues.
Below are some of the most commonly used operators:
-nVAR- True if the length ofVARis greater than zero.-zVAR- True if theVARis empty.STRING1 = STRING2- True ifSTRING1andSTRING2are equal.STRING1 != STRING2- True ifSTRING1andSTRING2are not equal.INTEGER1 -eq INTEGER2- True ifINTEGER1andINTEGER2are equal.INTEGER1 -gt INTEGER2- True ifINTEGER1is greater thanINTEGER2.INTEGER1 -lt INTEGER2- True ifINTEGER1is less thanINTEGER2.INTEGER1 -ge INTEGER2- True ifINTEGER1is equal or greater than INTEGER2.INTEGER1 -le INTEGER2- True ifINTEGER1is equal or less thanINTEGER2.-hFILE- True if theFILEexists and is a symbolic link.-rFILE- True if theFILEexists and is readable.-wFILE- True if theFILEexists and is writable.-xFILE- True if theFILEexists and is executable.-dFILE- True if theFILEexists and is a directory.-eFILE- True if theFILEexists and is a file, regardless of type (node, directory, socket, etc.).-fFILE- True if theFILEexists and is a regular file (not a directory or device).
Conclusion
The if, if...else and if...elif...else statements allow you to control the flow of the Bash script’s execution by evaluating given conditions.
If the condition evaluated to false, the code in the optional else clause will be executed.
If you have any questions or feedback, feel free to leave a comment.


