Skip to content

Instantly share code, notes, and snippets.

@unruthless
Created June 17, 2014 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unruthless/5ae56a935b5edfc7c66e to your computer and use it in GitHub Desktop.
Save unruthless/5ae56a935b5edfc7c66e to your computer and use it in GitHub Desktop.
Find and kill a process
# 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