rm * results in /bin/rm: Argument list too long.

| No Comments

This will fix this problem:

find . -name '*' | xargs rm

Leave a comment