Delete Files Recursively 9,814 views

Sift through a bunch of directories and delete only specific files.

 find ./path_to_search -type f -name "*the_patern*" -exec rm -i {} \;