Skip to content

Instantly share code, notes, and snippets.

@asilbalaban
Created April 14, 2015 21:03
Show Gist options
  • Save asilbalaban/5f9a12f25821230c71b8 to your computer and use it in GitHub Desktop.
Save asilbalaban/5f9a12f25821230c71b8 to your computer and use it in GitHub Desktop.
remove osx dot files and .DS_Store on ubuntu server
find . -name ._\* -print0 | xargs -0 rm -f
find . -name .DS_Store -printf \"%p\"\ \ | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment