Copying JUST mp3 files, flattening directory structure
// This is a simple find command that copies only mp3 files
// from an iTunes directory; it only copies the files into
// a directory called "mp3_flat"
// from an iTunes directory; it only copies the files into
// a directory called "mp3_flat"
find /[[yourpath]]/iTunes\ Music -iname "*.mp3" -exec cp {} /[[yourbackuppath]]/mp3_flat/ \;