Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/werdl/close

Kill all processes on a port with one of many signals (works on Windows (probably))
https://github.com/werdl/close

kill port process-killer rust unix windows

Last synced: about 7 hours ago
JSON representation

Kill all processes on a port with one of many signals (works on Windows (probably))

Awesome Lists containing this project

README

        

# close
> close down all processes using a certain port
## usage
```sh
close ()
```

## signals
- `-1` - `SIGHUP`
- `-2` - `SIGINT`
- `-3` - `SIGQUIT`
- `-4` - `SIGILL`
- `-5` - `SIGTRAP`
- `-6` - `SIGABRT`
- `-7` - `SIGBUS`
- `-8` - `SIGFPE`
- `-9` - `SIGKILL`
- `-10` - `SIGUSR1`
- `-11` - `SIGSEGV`
- `-12` - `SIGUSR2`
- `-13` - `SIGPIPE`
- `-15` - `SIGTERM`
- `-17` - `SIGCHLD`
- `-19` - `SIGSTOP`