Some computer FAQ mostly Linux/Mac

Remove an EXACT directory in Linux or Mac
rm -rf folder-name

BE B. CAREFUL with rm command as it can seriously cause damage to your files by deleting them completely.

BUT if you want to delete a folder do it this way

example:- you must give complete path and folder name

rm -rf /home/username/testing


You can of course use rm -i this tells rm to run in interactive mode and request confirmation of each file to delete

Remembering commands and how to use them to do what you want to do ....