Snippets v2

Languages
My Snippets

Remove Thumbs.db files from a Directory recursively Login or Register to Bookmark this snippet

Description Bash

This script will forefully remove all those "Thumbs.db" directories from the current path.

The Code Download
  1. #!/bin/bash
  2. find . -iname "Thumbs.db" -depth -exec rm -rf {} \;
Credits Contact JC

Added by JC on 13th July, 2010

Comments

There are no comments about this snippet.

Post Comment HTML is allowed

You must be registered and logged in to post a comment.

Login here to post a comment