Last active
October 17, 2020 11:28
-
-
Save joemasilotti/8976081 to your computer and use it in GitHub Desktop.
Kill iOS Simulator Zombie Processes
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
ps aux | grep _sim | grep -v grep | awk '{print $2}' | xargs kill -9 2>/dev/null |
This is absolutely amazing! Thank you!
Working great! Thanks!
it works... great job
thanks!!
thanks! you destroy my iPhone!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks!!