Created
May 19, 2019 15:21
-
-
Save Bunn/dee546cef4fed925ecf1be4ebcd1e5ca to your computer and use it in GitHub Desktop.
Cleanup space
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
#!/bin/bash | |
echo "Removing unavailable simulators..." | |
xcrun simctl delete unavailable | |
echo "Brew cleanup..." | |
brew cleanup | |
echo "Removing Xcode Caches..." | |
rm -rf ~/Library/Caches/com.apple.dt.Xcode | |
echo "Removing Xcode DerivedData..." | |
rm -rf ~/Library/Developer/Xcode/DerivedData | |
echo "Removing Xcode Archives..." | |
rm -rf ~/Library/Developer/Xcode/Archives | |
echo "Removing Xcode DeviceSupport..." | |
rm -rf ~/Library/Developer/Xcode/iOS\ DeviceSupport | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment