if [ "$1" = "" ] then echo "We need an argument" exit fi if [ $1 = "moose" ] then echo "That is the correct animal!" else echo "Wrong animal" fi