sudo rm directory not empty code example
Example 1: terminal delete directory not empty
rm -rf myDirectory
Example 2: rmdir not empty
rm -rf dir-name
Example 3: how to delete directory in unix
rmdir directoryname // This is will delete an empty directory.
rmdir -r directoryname // This is will delete everything in the directory
// including all files and subdirectories.