add bin scripts

This commit is contained in:
iofq 2023-12-28 21:47:36 -06:00
parent d37834a164
commit 211ba8a0b0
16 changed files with 349 additions and 53 deletions

13
bin/kp Executable file
View file

@ -0,0 +1,13 @@
### PROCESS
# mnemonic: [K]ill [P]rocess
# show output of "ps -ef", use [tab] to select one or multiple entries
# press [enter] to kill selected processes and go back to the process list.
# or press [escape] to go back to the process list. Press [escape] twice to exit completely.
pid=$(ps -ef | sed 1d | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[kill:process]'" | awk '{print $2}')
if [ "x$pid" != "x" ]
then
echo $pid | xargs kill -${1:-9}
kp
fi