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
xcrun simctl list | |
osascript -e 'tell application "Simulator" to quit' | |
myVar=($(xcrun simctl list | grep 'iPhone 6s'| cut -d " " -f8 )) | |
for i in "${myVar[@]}" | |
do | |
identifier=${i:1:36} | |
xcrun simctl erase $identifier | |
echo $identifier | |
done |