how to delete directory from terminal code example
Example 1: delete directory mac terminal
rm -r dirname
Example 2: remove directory from linux
rm -r filename
rm -rf filename
this command remove the directory and subdirectory forecefully
rm -r dirname
rm -r filename
rm -rf filename
this command remove the directory and subdirectory forecefully