Last active
December 16, 2015 08:19
-
-
Save wess/5405425 to your computer and use it in GitHub Desktop.
Get ride of those ghost processes XCode and the Simulator leave behind with this simple awk/bash script
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 \(YOUR_APP_NAME_HERE\) | awk '{print "kill -9 " $2}' | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment