Created
March 1, 2017 19:31
-
-
Save zjr/5ba07848eea1b0026d98f198c048ddd5 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