Delete many files and “Argument list too long” error

If you try to delete a big number of files using the command

rm *

You will get “Argument list too long” error, so here’s the cure

find . -exec  rm {} \;

Related posts:

Share

About number.0