Work around for "bash: /bin/rm: Argument list too long"
Use find instead of rm:
find . -name '*' | xargs rm
The command deletes all files in the current directory.
Use find instead of rm:
find . -name '*' | xargs rm
The command deletes all files in the current directory.