# ifthen1

# File: ifthen1

if [ -d old ]
then
   echo "Moving memo to old directory."
   mv memo old
else
   echo "The old directory is not here."
   echo "Please create it if you want,"
   echo "then run this script again."
fi
