find with -ok option - an -exec with prompt alternative

Option -ok adds a little caution to the commands ran with the Linux find command. It works like the -exec option except for one important difference — it makes the find command ask for permission before taking the specified action:

$ find . -name deleteme -ok rm {} \;
< rm ... ./todelete/deleteme > ?