Skip to content

Instantly share code, notes, and snippets.

@BjornW
Created May 20, 2016 12:18
Show Gist options
  • Save BjornW/c30a4c7fa08620036cf9c61c1276da6f to your computer and use it in GitHub Desktop.
Save BjornW/c30a4c7fa08620036cf9c61c1276da6f to your computer and use it in GitHub Desktop.
Remove .DS_Store from directory
find $DIR -name ".DS_Store" -print0 | xargs -0 rm -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment