Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ticklemynausea/netkill
Kills processes bound to local tcp/udp sockets
https://github.com/ticklemynausea/netkill
Last synced: 17 days ago
JSON representation
Kills processes bound to local tcp/udp sockets
- Host: GitHub
- URL: https://github.com/ticklemynausea/netkill
- Owner: ticklemynausea
- Created: 2019-11-21T19:39:33.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-11T08:35:30.000Z (over 4 years ago)
- Last Synced: 2024-10-27T12:25:35.290Z (2 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# netkill
Signals processes that have sockets bound to TCP or UDP ports.
Usage: `netkill [-s ] [] ...`
`` is of the form `protocol@host:port`. Omitting the protocol will default to TCP. Using an integer as an expression will signal all processes bound to that TCP port. Otherwise, it will signal all processes bound to that TCP host.
`` defaults to -9 (sigkill)
## Usage examples
- `netkill 3000 8080`
- `netkill UDP:50000`
- `netkill my.frontend.local my.backend.local localhost:9999`
- `netkill [email protected]:15000`