Bug #485
/bin/rm Argument List Too Long Error
Description
I came across a problem delete a massive amount of individual files, the error displayed the following:
/bin/rm: Argument list too long.
After doing a bit of research online I came across a neat solution to work around this issue.
cd /path/to/directory find . -name '*' | xargs rm