Remove all your Thumbs files
Quick Linux command to recursively remove Windows Thumbs.db files from directories using find and rm - clean up leftover thumbnail cache files when switching from Windows to Linux.
You too may have enjoyed Windows and its tendency to hide Thumbs files in any folder containing media files.
Basically, Windows creates those files to let you see thumbnails when you browse from file to file (or folder to folder . . . ).
And as you now run Linux, those files are completely useless for you !
So here is the magic solution to get rid of those parasites :
$ sudo find any_folder -name "Thumbs.db" -exec rm {} \;
any_folder being of course the location you want to sanitize.
You can now enjoy a world (slighlty) cleaner :).