I tried to remove around 7,000 log files under a directory by using

rm *.log

but failed with error message "too long argument list" . Is there any way to slove it ?

thanks .

link|improve this question

feedback

6 Answers

up vote 28 down vote accepted

Try

find . -name '*.log' -delete

Note that this will also delete files in subdirectories. To avoid that, add -maxdepth 1 before the -delete

link|improve this answer
2  
+1 for delete option. – Ikke Sep 21 '09 at 8:45
-maxdepth 0 if you want to prevent it from deleting logfiles in subdirectories. – Chuck Sep 21 '09 at 8:47
Clever way to do it, +1 ! – Clement Herreman Sep 21 '09 at 8:48
@Chuck I thought so too at first, but then I tried it – itsadok Sep 21 '09 at 9:03
1  
+1 much much quicker than the more frequently mentioned find . -name '*.log' | xargs rm – David Jun 21 '11 at 21:01
feedback

One way:

find . -name "*.log" -exec rm {} \;
link|improve this answer
4  
If you don't put the *.log in quotes, you're going to have the same problem – itsadok Sep 21 '09 at 8:47
*.log must be in single quotes, not double quotes, or you still have the same problem. – William Pursell Sep 21 '09 at 11:59
feedback
find <your-dir> -name '*.log' | xargs rm

is one way

link|improve this answer
feedback

Addon : Using xargs, if there's space within the file name reference the below,

find ./ -iname 'someglob*' -print0 | xargs -0 rm -rf
link|improve this answer
feedback

ls *.log | xargs -n 1000 rm

link|improve this answer
This has exactly the same problem...the shell glob fails and the shell cannot execute the command. – William Pursell Sep 21 '09 at 12:00
feedback

I think the reason why this problem is with rm/ls and not with find, is because:

rm *.log appends all the files matching "*.log" to rm as argument so the system complains long argument list. So, i think simply:

ls | grep ".*\.log" | xargs rm 

also does the job.
In case of find, the directory is searched first and files are matched with the pattern and those satisfying it are deleted.

link|improve this answer
-1: The "problem" is not the fault of rm or ls. The expansion of *.ls is done by the shell BEFORE rm is executed. It is the shell that is rejecting the resulting overly long command line ... – Stephen C Sep 27 '09 at 2:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.