Skip to content

Instantly share code, notes, and snippets.

@jls
Created April 15, 2012 00:45
Show Gist options
  • Save jls/2389067 to your computer and use it in GitHub Desktop.
Save jls/2389067 to your computer and use it in GitHub Desktop.
Remove all of the .DS_Store files in the current directory and all sub directories.
find ./ -type f | grep .DS_Store | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment