Skip to content

Instantly share code, notes, and snippets.

@wess
Last active December 16, 2015 08:19
Show Gist options
  • Save wess/5405425 to your computer and use it in GitHub Desktop.
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
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