Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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))
- Host: GitHub
- URL: https://github.com/werdl/close
- Owner: werdl
- Created: 2024-02-25T09:30:27.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-02-29T11:39:08.000Z (9 months ago)
- Last Synced: 2024-02-29T13:20:57.652Z (9 months ago)
- Topics: kill, port, process-killer, rust, unix, windows
- Language: Rust
- Homepage:
- Size: 130 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`