Created
August 14, 2014 08:31
-
-
Save cybear/2cfc851f9ac4cf8312eb to your computer and use it in GitHub Desktop.
iOS Simulator cache buster
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
#!/bin/sh | |
killall "iPhone Simulator" | |
folder="/Users/cybear/Library/Application\ Support/iPhone\ Simulator/7.1" | |
rm -rf $folder/Media/PhotoData/Caches | |
rm -rf $folder/Media/PhotoData/Thumbnails | |
rm -rf $folder/tmp | |
rm -rf $folder/Library/Cookies | |
rm -rf $folder/Library/TCC | |
rm -rf $folder/Library/Passes | |
rm -rf $folder/Library/Calendar | |
rm -rf $folder/Library/BulletinBoard | |
rm -rf $folder/Library/com.apple.itunesstored | |
rm -rf $folder/Library/Preferences | |
rm -rf $folder/Library/Caches |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment