The Funniest Example with if-else
---------------------------------
if [ condition ]
then
action if condition is true
else
action if condition is false
fi
----------------------------------------
if [ condition-1 ]
then
action if condition is true
elif [ condition-2 ]
then
action if condition-2 is true
elif [ condition-2 ]
then
action if condition-2 is true
...
else
action
fi
Demo Script:
------------
#! /bin/bash
read -p "Enter Your Favourite Brand:" brand
if [ $brand = "KF" ]
then
echo "It is Childrens Brand"
elif [ $brand = "KO" ]
then
echo "It is not that much Kick"
elif [ $brand = "RC" ]
then
echo "It is too light"
elif [ $brand = "FO" ]
then
echo "Buy One Get One FREE"
Continue this lesson in the app
Install CourseHive on Android or iOS to keep learning while you move.