from: http://askubuntu.com/questions/217893/how-to-delete-a-non-empty-directory-in-terminal
rm -rf lampp # -f = to ignore non-existent files, never prompt # -r = to remove directories and their contents recursively # -v = to explain what is being done