#!/bin/sh
if [ "$ANSI" = "Y" ]; then
  echo -n "[1;33;40Directory to create: [0;37;40m"
 else
  echo -n "Directory to create: "
fi
read MKDIRCMD
rmdir $MKDIRCMD
echo
if [ "$ANSI" = "Y" ]; then
  echo "[1;32;40mPress <ENTER> to continue.[0;37;40m"
 else
  echo "Press <ENTER> to continue."
fi
