How to delete lots of directory at a one time in Linux or UNIX
Q. I’d like to delete lots of directory at a one time in Linux or UNIX. For example /data2/2005 is old archived data and it is no longer needed. How do I delete all directories and files from /data2/2005? Do I need to write a script?
A.. You need to use rm command to remove files or directories at a once time. You don't have to write a script. Modern rm command has -r option which remove directories and their contents recursively. You also need to pass -f (force) option. In short enter command as follows to wipe out everything inside /data2/2005 directory:
$ rm -rf /data2/2005
However if you have thousands and thousands of files and sub directories, rm may not work out of box due to shell limitation. Try the combination of find and rm command as follows:
$ find -t f /data2/2005 -exec rm -rf '{}' \;
$ find /data2/2005 -exec rm -rf '{}' \;
The first one will only wipe out files.
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- Linux delete directory with rmdir command
- Linux / UNIX: Delete a file
- Linux: Delete user password
- Howto delete empty lines using sed command under Linux / UNIX
- Ubuntu Linux: Delete directory command in Terminal
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: archived_data, Linux, recursively_delete_files, rm_command, shell, UNIX



August 27th, 2007 at 9:19 am
How do I delete files which have been generated before perticular date. I would like to delete all files which are generated on or before 31.12.2006
September 1st, 2007 at 5:17 am
I have created printers on Linux server for different X11 clients. Is it possible to copy all these printer configuration on another server as we are going to up another server.
December 10th, 2007 at 10:43 am
how can we make it through the day??? without you…Say you’ll never go…hehehe