Skip to content

Instantly share code, notes, and snippets.

@parano
Created April 14, 2014 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parano/10683720 to your computer and use it in GitHub Desktop.
Save parano/10683720 to your computer and use it in GitHub Desktop.
Recursively delete all the '.DS_Store' files under current folder and its sub-folders
sudo find ./ -name ".DS_Store" -depth -exec rm -f {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment