René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

if [shell]

if command
then
  commands
fi
if command
then
  commands
else
  commands
fi
if command
then
  commands
elif command
then
  commands
else
  commands
fi
An example:
if [ `expr 2 + 3` -eq 7 ]
then
  echo "1"
elif [ `expr 2 + 3` -eq 4 ] 
then
  echo "2"
else 
  echo "3"
fi