if [ condition ]; then
action
elif [ condition ]; then
action
else
action
fiExamples
Example 1
if grep Ford students
then
echo end of list
else
echo No student named ford
fiExample 2
if test $x -lt 3
then
echo this is very suprising
fiExample 3
if [ $# -lt 1 ] then
echo "mymsg"
fi