ikill

Crates.ioikill
lib.rsikill
version1.5.0
sourcesrc
created_at2020-03-22 05:12:35.419801
updated_at2022-02-20 18:19:21.435713
descriptionInteractively kill processes
homepagehttps://github.com/pjmp/ikill
repositoryhttps://github.com/pjmp/ikill
max_upload_size
id221332
size1,229,382
Pomba Magar (pombadev)

documentation

README

ikill Crates.io License

Interactively kill running processes, inspired by 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

A screenshot

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.

Usage

ikill - Interactively kill processes

USAGE:
    ikill

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

Alternatives

# 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?
Commit count: 33

cargo fmt