Skip to content

Instantly share code, notes, and snippets.

@lukehedger
Created February 29, 2016 11:16
Show Gist options
  • Select an option

  • Save lukehedger/95f99e104a90656b9457 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown
Author

ps -ef | grep node

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