409: Final

Command: rm

rm

Syntax: rm <file>
Arguments: -r, -f, -i
Description: Removes the specified file or directory. However, if you try to remove a non-empty directory without using the -r option, the command will fail. -r will remove all files and directories recursively, -f will not force the prompt to acknowledge that you actually want to remove these files, and -i (short for -interactive) WILL prompt you to acknowledge that you want to remove these files.
Example:

$> ls
$>
#.mrg...login   Trash      dead.letter        www
#mrg...profile  bin        mail
$> rm -rf mail
$>
$> ls
$>
#.mrg...login   Trash      dead.letter        www
#mrg...profile  bin