Skip to content

Instantly share code, notes, and snippets.

@elfrank
Last active October 6, 2015 17:28
Show Gist options
  • Save elfrank/3028531 to your computer and use it in GitHub Desktop.
Save elfrank/3028531 to your computer and use it in GitHub Desktop.
Remove .DS_Store on a folder (Recursive)
sudo find . -name ".DS_Store" -depth -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment