Created
August 7, 2019 14:30
-
-
Save corlaez/cc16d7089b6828859e24e2d85cd69603 to your computer and use it in GitHub Desktop.
Killing processes using a given port unix. Runs in terminal
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
netstat -ano | findstr :PORT | |
taskkill /PID_NUMBER /F | |
netstat -ano | findstr 3000 | |
taskkill /9052 /F |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment