DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Getting Around "Too Many Files" Problem
If you have too many files in a directory in Linux then 'rm' will not work (at least on older distros...maybe this has been fixed on newer distros). This snippet uses find in order to remove all files in the specified directory. Naturally you can change the value of '*' to limit the files you want to delete to particular names.
find $directory -name '*' -exec rm {} \;




