Skip to content

Instantly share code, notes, and snippets.

@corlaez
Created August 7, 2019 14:30
Show Gist options
  • Save corlaez/cc16d7089b6828859e24e2d85cd69603 to your computer and use it in GitHub Desktop.
Save corlaez/cc16d7089b6828859e24e2d85cd69603 to your computer and use it in GitHub Desktop.
Killing processes using a given port unix. Runs in terminal
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