Weblog - 1 items for shell
Recursively delete files on a wildcard match
29 Jun 2008
find . -name "*.ext" -exec rm '{}' ';'
Will recursively delete all files under the current dir containing .ext in the filename.
