Skip to content

Instantly share code, notes, and snippets.

@sydneyitguy
Last active December 12, 2015 00:58
Show Gist options
  • Save sydneyitguy/4687584 to your computer and use it in GitHub Desktop.
Save sydneyitguy/4687584 to your computer and use it in GitHub Desktop.
find -exec example
# Remove all Thumbs.db files reculsively from current directory
find ./ -name "Thumbs.db" -exec rm '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment