Just a note to you UNIX users out there. rm -rf is a dangerous command. I’ve been warned from so many sources I don’t remember them all, but I still manage to use it somehow. Today I deleted a whole directory of image files on a project at work. (Luckily I had a backup from yesterday, so it was just fine.) But the point remains: Be careful using rm -rf!
I’ve made an alias in my .bashrc file that says rm='rm -i', just so it will make me confirm things in case I actually wasn’t paying attention. (Obviously using -f overrides that, which is convenient when deleting directories but very dangerous at the same time.)
Be careful with sudo, too…