!!Linux

To recursively delete all mp3 files -

%%prettify 
{{{
find . -type f -name "*.mp3" -exec rm '{}' \; -print
}}}
/%

----
[Linux.Shell | CategoryComputing.Linux.Shell] - [Mac.Shell | CategoryComputing.Mac.Shell]