User Tools

Site Tools


bash:if...then...else

This is an old revision of the document!


BASH - if...then...else

If takes the form:

if CONDITION 
then
STATEMENTS
fi

The statements are only executed given the CONDITION is true.

The fi keyword is used for marking the end of the if statement.


Example

#!/bin/bash
 
echo -n "Enter a number: "
read num
 
if [[ $num -gt 10 ]]
then
echo "Number is greater than 10."
fi

The above program will only show the output if the number provided via input is greater than ten.

The -gt stands for greater than; similarly -lt for less than; -le for less than equal; and -ge for greater than equal. The [[ ]] are required.


More Control Using If Else

Combining the else construct with if allows much better control over the script’s logic.

#!/bin/bash
 
read n
if [ $n -lt 10 ];
then
echo "It is a one digit number"
else
echo "It is a two digit number"
fi

The else part needs to be placed after the action part of if and before fi.


Using Elif

The elif statement stands for 'else if' and offers a convenient means for implementing chain logic.

#!/bin/bash
 
echo -n "Enter a number: "
read num
 
if [[ $num -gt 10 ]]
then
echo "Number is greater than 10."
elif [[ $num -eq 10 ]]
then
echo "Number is equal to 10."
else
echo "Number is less than 10."
fi

See Switch

bash/if...then...else.1576183122.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki