Windows
Mac OS X & Ubuntu
- Command Window(cmd) - for /f "tokens=5" %a in ('netstat -ano ^| find "4200" ^| find "LISTENING"') do taskkill /f /pid %a
- GitBash - netstat -ano | findstr :4200; taskkill -PID
-F
Mac OS X & Ubuntu
- sudo lsof -t -i tcp:4200 | xargs kill -9
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.