Skip to content

Instantly share code, notes, and snippets.

@nanoxd
Last active June 10, 2019 19:44
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 nanoxd/755137c70fdf81c32bb88ddebb167876 to your computer and use it in GitHub Desktop.
Save nanoxd/755137c70fdf81c32bb88ddebb167876 to your computer and use it in GitHub Desktop.
[Xcode Diet] Clean up after Xcode's voracious hard drive appetite
#!/usr/bin/env sh
set -e
fancy_echo() {
local fmt="$1"; shift
printf "\n$fmt\n" "$@"
}
fancy_echo "๐Ÿ“ข Current Free Space"
df -hl
fancy_echo "๐Ÿ—‘ Deleting unavailable simulators"
xcrun simctl delete unavailable
fancy_echo "๐Ÿ—‘ Deleting Derived Data"
rm -rf ~/Library/Developer/Xcode/DerivedData
fancy_echo "๐Ÿ—‘ Deleting Carthage Caches"
rm -rf ~/Library/Caches/{carthage,org.carthage.CarthageKit}
fancy_echo "๐ŸŽ‰ Free Space"
df -hl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment