DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Replace Space Char With Underscore From Files
find . -type f -iname "*.mp3" -exec rename "s/ /_/g" {} \;





