Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Created August 16, 2019 21:21
Show Gist options
  • Save gwsu2008/db77c873fb95be281fb65449f8e9e852 to your computer and use it in GitHub Desktop.
Save gwsu2008/db77c873fb95be281fb65449f8e9e852 to your computer and use it in GitHub Desktop.
ios-remove-unavailable-simulator
i=1
while [ $i -ne 20 ]; do let i=$i+1; xcrun simctl list | grep Shutdown | grep unavailable | tail -n1 | awk -F"Shutdown" '{print $1}' | tr -d '()' | awk '{print $NF}' | xargs -I{} xcrun simctl delete {}; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment