How to delete an entire directory via SSH

March 31, 2008
Categories: IT & Administration, Web & Software Development
Tags: , ,

I know this is probably common knowledge to Linux and Unix geeks. But every time I need to remove a directory with files in my NearlyFreeSpeech.Net SSH terminal I end up having to google for the command. So here it is for anyone else who’s out there googling!

rm -r -f YourDirectory

rm = remove / delete
-r = recursively deletes the directory and all files in it, including subdirectories
-f = will not ask for confirmation before deleting

  1. 2 Responses to “How to delete an entire directory via SSH”

  2. By David Nunez on Apr 12, 2008

    geek tip: you can save another TWO WHOLE KEYSTROKES by doing “-rf” not “-r -f”

    you can usually stack single letter options if they have no modifer ‘-rfaweqkv’ but you cant stack the “-u cool -p beans” or “–fullword” options

  3. By Dusty on Apr 14, 2008

    Good tip! :)

Post a Comment