mirror of
https://github.com/jarun/nnn.git
synced 2024-11-01 00:47:18 +00:00
34 lines
708 B
Bash
Executable file
34 lines
708 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Description: Fuzzy list and kill a (zombie) process by name
|
|
#
|
|
# Dependencies: fzf, ps
|
|
#
|
|
# Note: To kill a zombie process enter "zombie"
|
|
#
|
|
# Shell: POSIX compliant
|
|
# Author: Arun Prakash Jana
|
|
|
|
printf "Enter process name ['defunct' for zombies]: "
|
|
read -r psname
|
|
|
|
# shellcheck disable=SC2009
|
|
if ! [ -z "$psname" ]; then
|
|
if which sudo >/dev/null 2>&1; then
|
|
sucmd=sudo
|
|
elif which doas >/dev/null 2>&1; then
|
|
sucmd=doas
|
|
else
|
|
sucmd=: # noop
|
|
fi
|
|
|
|
if which fzf >/dev/null 2>&1; then
|
|
fuzzy=fzf
|
|
else
|
|
exit 1
|
|
fi
|
|
|
|
cmd="$(ps -ax | grep -iw "$psname" | "$fuzzy" | sed -e 's/^[ \t]*//' | cut -d' ' -f1)"
|
|
$sucmd kill -9 "$cmd"
|
|
fi
|