https://github.com/pombadev/ikill
Interactively kill running processes.
https://github.com/pombadev/ikill
fkill ikill kill killall pkill process
Last synced: 7 months ago
JSON representation
Interactively kill running processes.
- Host: GitHub
- URL: https://github.com/pombadev/ikill
- Owner: pombadev
- License: mit
- Created: 2020-03-22T05:00:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-29T04:52:42.000Z (8 months ago)
- Last Synced: 2024-11-30T10:09:27.619Z (8 months ago)
- Topics: fkill, ikill, kill, killall, pkill, process
- Language: Rust
- Size: 1.97 MB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT.md
Awesome Lists containing this project
README
ikill [](https://crates.io/crates/ikill) 
---> Interactively kill running processes, inspired by [fkill-cli](https://github.com/sindresorhus/fkill-cli).
### Features
- List and fuzzy find running processes.
- Multi select processes by pressing ⭾.
- Clear all queries by pressing Ctrl+l.### Usage
Run `ikill` on terminal, search and press ↵.
### Screenshot
[](./screencast.gif)
### Installation
If you have rust toolchain installed, you can just do:
```
cargo install ikill
```Alternatively, you can download pre-build binaries from the [release page](https://github.com/pjmp/ikill/releases).
### Usage
```
ikill - Interactively kill processesUSAGE:
ikillFLAGS:
-h, --help Prints help information
-V, --version Prints version information
```# Alternatives
```bash
# using `fzf`
pgrep . -l | fzf --reverse -m | awk '{ print $2 }' | xargs -I% -r kill -9 '%'# using `dmenu`
pgrep . -l | dmenu -l 20 | awk '{ print $2 }' | xargs -I% -r kill -9 '%'
```### TODO
- [ ] Preview pane with process id?
- [ ] allow users to customize `skim`?