EMBEDDED FOR US
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Delete / Remove a Directory Linux Command

Go down

Delete / Remove a Directory Linux Command Empty Delete / Remove a Directory Linux Command

Post  Admin Tue Mar 05, 2013 2:57 am

Delete / Remove a Directory Linux Command



I am new to Linux and command line. How do I delete or remove a directory?

Use the rmdir command. This command remove the DIRECTORY(ies), if they are empty. Open a command-line terminal (select Applications > Accessories > Terminal), and then type the following command to remove a directory called /tmp/docs:


rmdir /tmp/docs


If a directory is not empty you will get an error:
$ rmdir letters
Output:

rmdir: letters: Directory not empty

You can cd to the directory to find out files:
$ cd letters
$ ls
Linux Remove Entire Directory Command

To remove all directories and subdirectories use rm command. For example remove letters and all subdirectories and files inside this directory, type the following command (warning all files including subdirectories will be deleted permanently):
$ rm -rf letters/
Admin
Admin
Admin

Posts : 49
Join date : 2012-08-15
Location : Mumbai,INDIA

http://embeddedforus.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum