Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`