2
I'm working on a website for a client, and I just see a folder containing more than 1 million cache files.
I need to delete him, but i can't, i have this message : Argument list too long
I started to delete all files starting with aaa*, bbb*, ccc* .... but I do not want to spend my life... (rm -f aaa*.string.php)
How can i do that ?? Thanks !
1try
find /directory/path -type f -delete
– Eddy_Em – 2013-02-12T10:23:32.970See Perl to the rescue: case study of deleting a large directory
– choroba – 2013-02-12T10:32:41.910