buntu how to remove directory 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 to delete a folder in ubuntu using terminal
rm -R folder-name