Skip to content

Instantly share code, notes, and snippets.

@ButlerFuqua
Last active January 26, 2019 12:38
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 ButlerFuqua/846ac1011266e70cec1d70324eed9ade to your computer and use it in GitHub Desktop.
Save ButlerFuqua/846ac1011266e70cec1d70324eed9ade to your computer and use it in GitHub Desktop.
https://tips.tutorialhorizon.com/2015/10/19/list-running-processes-in-terminal-filter-and-kill-them-if-required/
To find all instances of node running:
ps -a | grep node
-a means all, 'node' means all node instances.
The PID is the first number. The below kills it:
kill -9 <PID>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment