Created
June 17, 2014 00:21
-
-
Save unruthless/5ae56a935b5edfc7c66e to your computer and use it in GitHub Desktop.
Find and kill a process
This file contains 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
# Get process ID | |
ps aux | grep -i "Program To Kill" | |
# Kill the process | |
killall -9 PID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment