Find and delete all Thumbs.db files


/ Published in: Bash
Save to your folder(s)

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.


Copy this code and paste it in your HTML
  1. find / -name "Thumbs.db" -exec rm '{}' \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.