Secure Delete

Use the shred utility to securely erase files from the filesystem:

shred -zuv <FILENAME>

Since it does not work for directories, combine with find as follow:

find <DIRECTORY> -type f -exec shred -zuv {} \;