I know this will delete everything in a subdirectory and below it:
rm -rf <subdir-name>
But how do you delete everything in the current directory as well as every subdirectory below it and the contents of all of those subdirectories?
|
I know this will delete everything in a subdirectory and below it:
But how do you delete everything in the current directory as well as every subdirectory below it and the contents of all of those subdirectories? |
|||||
|
|
Practice safe computing. Simply go up one level in the hierarchy and don't use a wildcard expression:
The two dashes |
|||||||||||||||||
|
|
Will delete all files/directories below the current one.
If you want to do the same with another directory whose name you have, you can just name that
If you want to remove not only the sub-directories and files of it, but also the directory itself, omit |
|||||||
|
|
Use
Update: The A safer version IMO is to use:
(this prompts you for confirmation before deleting every file/directory.) |
|||||||||||||||||||||
|
|
What I always do is type
and then hit ESC-*, and bash will expand the * to an explicit list of files and directories in the current working directory. The benefits are:
In fact, I like this so much that I've made it the default behavior for TAB with this line in .bashrc:
|
|||||
|
|
make sure you are in the correct directory rm -rf * |
|||||||||
|
|
It is correct that This being said, if you are like me and have multiple terminal windows open at the same time, you'd better be safe and use First, if you look at the In On the otherhand, in In my early sysadmin days I did an |
|||
|
|
|
This simplest safe & general solution is probably:
|
|||
|
|
|
How about:
|
|||
|
|