terminate folder delete by cmd code example
Example 1: remove directory in cmd
# for removing empty directory
$ rmdir myDirectory
# to remove a directory that contains files and subdirectory
$ rm -r myDirectory
Example 2: how delete folder terminal mac
rm -rf some_dir
-r "recursive" -f "force" (suppress confirmation messages)
Be careful!