Comment on A faster way to delete millions of files in a directoryComments−yaldasoft13yI had to delete a few million files in bash once. 'find' didn't work. I used perl to overcome the issues.opendir D, "."; while ($n = readdir D) { unlink $n }
Comments
I had to delete a few million files in bash once. 'find' didn't work. I used perl to overcome the issues.
opendir D, "."; while ($n = readdir D) { unlink $n }