#!/bin/bash
# File: president3
for pres in Washington Jefferson Lincoln Kennedy Clinton
do
      echo $pres
      if [ $pres = Washington ] ; then
            echo "Call me George"
      elif [ $pres = Jefferson ] ; then
            echo "Call me Tom"
      elif [ $pres = Lincoln ] ; then
            echo "Call me Abe"
      elif [ $pres = Kennedy ] ; then
            echo "Call me Jack (if you are my friend)"
      elif [ $pres = Clinton ] ; then
            echo "Call me Wild William"
     fi
done
