Skip to content

Instantly share code, notes, and snippets.

@rusdyahmad
Created July 13, 2013 11:44
Show Gist options
  • Save rusdyahmad/5990452 to your computer and use it in GitHub Desktop.
Save rusdyahmad/5990452 to your computer and use it in GitHub Desktop.
clean script to remove ridiculous mac files
#!/bin/bash
find . -name ".DS_Store" -print0 | xargs -0 rm -rf
find . -name "._*" -print0 | xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment