Skip to content

Instantly share code, notes, and snippets.

@lukehedger
Created February 29, 2016 11:16
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 lukehedger/95f99e104a90656b9457 to your computer and use it in GitHub Desktop.
Save lukehedger/95f99e104a90656b9457 to your computer and use it in GitHub Desktop.
View and kill processes
# view all processes
ps -ax
# filter processes
ps -ax | grep <process-name>
# kill process
kill <process-PID>
@lukehedger
Copy link
Author

ps -ef | grep node

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment