Skip to content

Instantly share code, notes, and snippets.

@danielcosta
Created May 21, 2014 19:46
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 danielcosta/b89f23547915db999b27 to your computer and use it in GitHub Desktop.
Save danielcosta/b89f23547915db999b27 to your computer and use it in GitHub Desktop.
Kill all processes by PID identifier
alias pid='ps aux | pgrep -d " " ';
kill -9 $(pid chrome)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment