bash: /bin/rm: Argument list too long
Nov 13
bash: /bin/rm: Argument list too long
Mon, 2006-11-13 16:40 — superuser
When trying to clean out some LARGE cache directories I recieved the following error:
[technotes@zebra cache]# rm * -bash: /bin/rm: Argument list too long
The quick fix to this was:
find . -name * | xargs rm
Comments
Post new comment