cdotfis-mac/dotfiles/.local/bin/kill.sh

4 lines
154 B
Bash
Executable File

#!/usr/bin/env bash
ps -u $USER -o pid,%mem,%cpu,command | sort -b -k2 -r | sed -n '1!p' | cut -b 1-75 | fzf | cut -d ' ' -f1 | xargs -I {} kill -9 "{}"