Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Created June 8, 2015 21:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nav-Appaiya/a54d579c49c477bc98e0 to your computer and use it in GitHub Desktop.
Save Nav-Appaiya/a54d579c49c477bc98e0 to your computer and use it in GitHub Desktop.
Removing all the .AppleDouble folders from your project in 1 command.
If you’ve shared your Windows / Unix drives with Mac OS X before, you may notice that Mac OS X will leave some footprints on your shared folders, such as .DS_Store and .AppleDouble. These files and directories are pretty annoying because they showed up in almost every single directory you accessed from the OS X.
find . -name \.AppleDouble -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment