Created
March 1, 2017 19:31
-
-
Save zjr/63958bb85cf825bc42a3ad67f3c336b1 to your computer and use it in GitHub Desktop.
command chain for killing node on a port
This file contains 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
lsof -i :5093 | awk '$1 == "node" {print $2}' | xargs kill -9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment