Created
June 8, 2015 21:10
-
-
Save Nav-Appaiya/a54d579c49c477bc98e0 to your computer and use it in GitHub Desktop.
Removing all the .AppleDouble folders from your project in 1 command.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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