#!/bin/bash

# note parameters MUST be really simple
testFunc()
{
  echo -e "\ntestFunc parameters $2 $1\n"
  return
} # end testFunc() #
testFunc a b c

exitFunc()
{
  echo -en "\nHit return to EXIT "
  read RESP
  exit
} # end exitFunc() #



if [ "word" == "word" ]; then
   echo double equal is good
else
   echo double equal is bad
fi

case `hostname` in
   zantheon ) echo performing fetch for silicon
              echo fetchAllProducts
              ;;
   zilicon  ) echo performing fetch for silicon
              echo fetchAllProducts
              ;;
   *        ) echo unknown host: `hostname`
              echo terminating
              ;;
esac


