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