Dive into the archives.
- Argument list too long
After run rm -f * you get the error /bin/rm: Argument list too long
Possible options:
Use xargs. Xargs pass a list of arguments to a command. This deletes all the files listed:
ls |xargs rm
Use find. You can use the find command to make some actions with the found elements.
find . -exec rm {} \;
If you don´t [...]

