# del
echo "Enter the name of the file to delete: \c"
read file
echo "Type 'y' to remove it, 'n' to change your mind ..."
rm -i $file
echo "That was YOUR decision!"
