Created
September 19, 2018 08:18
-
-
Save ManWithBear/9b928427ed366b000d4f6e1efc6aae2f to your computer and use it in GitHub Desktop.
Script to delete all your simulators
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/bash | |
xcrun simctl delete $(xcrun simctl list | grep -o '[0-9A-F]\{8\}-[0-9A-F]\{4\}-[0-9A-F]\{4\}-[0-9A-F]\{4\}-[0-9A-F]\{12\}' | xargs) | |
xcrun simctl delete unavailable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment