I’ve just wrote a quick bash script to delete all the Thumbs.db and desktop.ini using the find command, from my MP3 collection on my home linux box.
I also found some nice bash script sites in the process.
#!/bin/sh #_______________________________________________________# # Filename clean-mp3 # # # # A script written to delete the Thumbs.db and # # the folder.ini files created by MS Windows # # from my MP3 music collection. # # # # Located in /home/billy/ # # Created on 11/03/2008 by Billy Dickson # # # #_______________________________________________________# # Exit on error set -o errexit export PATH=/usr/local/bin:/usr/bin:/bin find . \( -name "Thumbs.db" -o -name "desktop.ini" \) -exec rm {} \;