How to discover files matching a find condition and delete them upon user confirmation.
To find all files with zero length and ask if they should be deleted:
find / -size 0 -ok rm {} \;
The backslash \ is important because it tells the shell to ignore the semicolon symbol which usually separates commands on a single command line.