#TITLE : elsif
#CREATED : 09/22/2014
#CREATED BY :
########################################################
## if (( $COUNT < 10 )) for numerical test
## if [[ $USER = "root" ]] for string test
if [[ ]]
then
echo "true"
elif [[ ]]
then
echo "also true"
else
echo "false"
fi