Interactively kill running processes, inspired by fkill-cli.
- List and fuzzy find running processes.
- Multi select processes by pressing ⭾.
- Clear all queries by pressing Ctrl+l.
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 '%'
- Preview pane with process id?
- allow users to customize
skim
?