Skip to content

Instantly share code, notes, and snippets.

@mmassaki
Created August 14, 2014 20:16
Show Gist options
  • Select an option

  • Save mmassaki/48a86f06ecdd42355a1f to your computer and use it in GitHub Desktop.

Select an option

Save mmassaki/48a86f06ecdd42355a1f to your computer and use it in GitHub Desktop.
Remove .DS_Store and prevent file creation over network drives
# from http://danilo.ariadoss.com/how-to-recursively-remove-ds_store-files-on-mac-os-x/
# and http://support.apple.com/kb/ht1629
find . -name '*.DS_Store' -type f -delete
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment