We Recommend

bash Cookbook: Solutions and Examples for bash Users bash Cookbook: Solutions and Examples for bash Users
bash Cookbook teaches shell scripting the way Unix masters practice the craft. It presents a variety of recipes and tricks for all levels of shell programmers so that anyone can become a proficient user of the most common Unix shell -- the bash shell -- and cygwin or other popular Unix emulation packages.


Posted By

Roshambo on 12/20/06


Tagged

Bash delete thumbs unix thumbnails thumbnail find thumb


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

nimoyjohnson


Find and delete all Thumbs.db files


Published in: Bash 


Remove all those annoying thumbnail files that Windows users created while browsing your network drive. This command traverses all directories and deletes all "Thumbs.db" files as it finds them.

  1. find / -name "Thumbs.db" -exec rm '{}' \;

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: deepan0143 on January 7, 2007

Please How To Delete a Thumbs.db files.

Posted By: sachinbhavsar on April 2, 2008

Command for Windows

C:\del /s /q Thumbs.db

You need to login to post a comment.