A Faster Way to Delete Many Folders
This issue is particularly annoying when dealing with expansive directory structures mounted via NFS. Let’s say you have a directory with ten thousand folders and each of them has more subfolders and files. And you need to delete all of them. Running the usual “rm -rf *” at the top of the directory structure will take a very, very long time. There is a faster way.
The idea is to use the “find” command with the “maxdepth” parameter to locate directories one or two levels deep and to run “rm” on each of those directories in the background. In my experience, this approach cuts the required time many-fold . Here is an example:
find . -maxdepth 1 -type d -print | grep -v "^.$" | while read dir ; do nohup /bin/rm -rf "${dir}" & done
Note: he entering this command, make sure to hit enter after the ampersand and then enter “done”.
I can do this with other email but haven’t been able to do this with Yahoo. Deleting item by item would take forever. I’d like to be able to save some selected items but this is not an absolute necessity.
My yahoo mail box contains more than 40.000 mails. I am looking for an easy way to delete all and start from scratch. It seams impossible to delete them page by page.
I think it needs to open some folder called %temp% , but I can’t open it, can anyone help me?
I have to go to some folder called %temp% how can i get there? I know how todelete it from IE. It’s in the computer.
I have to go to some folder called %temp% how can I get there? I know how todelete it from IE. It’s in the computer.
I just recently got back online after about 3years and have over 90,000 emails that i want to delete all at once instead of page by page. Can i reset my email and delete them all? or is there another way? or am i just stuck deleting page by page?