Skip to content

Instantly share code, notes, and snippets.

@derdesign
Created January 31, 2013 13:55
Show Gist options
  • Save derdesign/4683024 to your computer and use it in GitHub Desktop.
Save derdesign/4683024 to your computer and use it in GitHub Desktop.
Remove .DS_Store files
#!/bin/sh
for file in `find . | grep .DS_Store`; do echo "$file" && rm "$file"; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment