Difference between revisions of "Bash if elif else fi"

From thelinuxwiki
Jump to: navigation, search
(example)
Line 21: Line 21:
 
     some_command
 
     some_command
 
   fi
 
   fi
 +
 +
OR example
 +
 +
if [[ "$VARIABLE" == "something" || "$VARIABLE" == "else" ]]; then
 +
  some_command
 +
fi

Revision as of 16:23, 17 March 2014

Bash If..elif..else..fi

 If [ conditional expression1 ]
 then
   statement1
   statement2
   .
 elif [ conditional expression2 ]
 then
   statement3
   statement4
   .
   .
   .
 else
   statement5
 fi

example

 if [ "$opt" = "some string" ]; then
   some_command
 fi

OR example

if | "$VARIABLE" == "else" ; then
  some_command
fi