#!/bin/ksh
# del
print -n "Enter the name of the file to delete: "
read file
print "Type 'y' to remove it, 'n' to change your mind ..."
rm -i "$file"  # Use "" in case var has spaces
print That was YOUR decision!
