Recursively Delete Select File Types
Linux
#
To recursively delete all mp3 files -
find . -type f -name "*.mp3" -exec rm '{}' \; -print
Linux.Shell
-
Mac.Shell