Core Coding®

Delete Files Recursively

  Delete Files Recursively
Sift through a bunch of directories and delete only specific files.
find ./path_to_search -type f -name "*the_patern*" -exec rm -i {} \;

Go back to resources
Home Mail GitHub