linux command

How to add or remove a directory in ubuntu

Creating the directory mkdir directory_name Copy If the path is protected we need to use sudo command Removing the directory rmdir directory_name Copy If the path is protected we need to use sudo command Remove the directory including items permanently rm -r directory_name Copy More Make sure you understand the commands actions . Then run […]