Deleting non-empty folders from Mac Terminal
If you try to delete a non-empty folder from Terminal on your Mac with
rmdir folder-name
you will get the following error:
rmdir: folder-name: Directory not empty.
The command you want to use is:
rm -r folder-name


