Created
October 29, 2015 15:43
-
-
Save tjw/f1d21f883cba8aa8f003 to your computer and use it in GitHub Desktop.
XcodeMindWipe
This file contains hidden or 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
| XcodeMindWipe () { | |
| rm -rf ~/Library/Developer/Xcode/DerivedData | |
| find . -name $USER.xcuserdatad -o \( -name xcuserdata -o -name "*.xccheckout" \) -print0 | xargs -0 rm -rf | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment