Created
February 29, 2016 11:16
-
-
Save lukehedger/95f99e104a90656b9457 to your computer and use it in GitHub Desktop.
View and kill processes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# view all processes | |
ps -ax | |
# filter processes | |
ps -ax | grep <process-name> | |
# kill process | |
kill <process-PID> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ps -ef | grep node