to remove non emp dir code example
Example 1: terminal delete directory not empty
rm -rf myDirectory
Example 2: 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.