| Crates.io | ikill |
| lib.rs | ikill |
| version | 1.5.0 |
| created_at | 2020-03-22 05:12:35.419801+00 |
| updated_at | 2022-02-20 18:19:21.435713+00 |
| description | Interactively kill processes |
| homepage | https://github.com/pjmp/ikill |
| repository | https://github.com/pjmp/ikill |
| max_upload_size | |
| id | 221332 |
| size | 1,229,382 |
Interactively kill running processes, inspired by fkill-cli.
Run ikill on terminal, search and press ↵.
If you have rust toolchain installed, you can just do:
cargo install ikill
Alternatively, you can download pre-build binaries from the release page.
ikill - Interactively kill processes
USAGE:
ikill
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
# 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 '%'
skim?