Skip to content

Instantly share code, notes, and snippets.

@jruz
Created April 29, 2015 09:57
Show Gist options
  • Save jruz/88aa46c11677830c6e9c to your computer and use it in GitHub Desktop.
Save jruz/88aa46c11677830c6e9c to your computer and use it in GitHub Desktop.
kill node or ruby processes
# Kill by process ID
ps aux | grep node
ps aux | grep ruby
# Process ID (second from the left)
kill -9 12345
# Kill all named
killall node
killall ruby
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment