A program that deletes itself
Bash script (7 characters, 7 bytes)
rm "$0"
Unix? (9):
#!/bin/rm
A classic. Uses rm
as interpreter, for instant self-deletion. Not the very shortest though.
Batch - 6 bytes
Del %0
Pretty simple. Note: Works even if the name contains spaces.