
	# File: ifelif1
	# Note alternate position of `then'.  
	# The semi-colon is
	# mandatory if you choose this style.

	if [ -d oldA ]
	then
	   echo "Moving memo to oldA directory."
   	   mv memo oldA
	elif [ -d oldB ] ; then
	   echo "Moving memo to oldB directory."
	   mv memo oldB
	elif [ -d oldC ] ; then
	   echo "Moving memo to oldC directory."
	   mv memo oldC
	else
	   echo "None of oldA, oldB, or oldC exist."
	   echo "Not moving nothing nowhere."
	fi

