The delete command in linux is rm
If you want to delete a folder and all it's contents, you use the -r switch... "rm -r /folder/"
If you want to forcibly delete a file (ie no warnings or errors), you use the -f switch... "rm -f pr0n.jpg"
Combining these, you delete a folder and everything in it without any warnings... "rm -rf /pr0nfolder/"
The mount point for the linux filesystem is "/". That means that every drive, file, folder, everything, is under /
The command "rm -rf /" is about the worst thing you can do to a linux system. It'll delete everything every drive attached to the computer, locally, and externally.
Say you created a file called -rf and you wanted to delete it. You'd type "rm -rf"
