Delete an entire directory via SSH

Really simple to do, but be careful!  There is no going back once you’ve performed this command. The command: rm -rf YourDirectory Explanation: rm = remove (delete) -r = recursive (all folders, sub folders and files) -f = force (no prompt) Do this at your own peril.  If you’re not sure what you’re doing… STOP!  […]