bash: functions

This commit is contained in:
Michael Grote 2021-07-03 11:07:55 +02:00
parent b99e24e6a4
commit 8e421c2237

View file

@ -6,3 +6,6 @@ function rgf {
function rgv { function rgv {
rg --files -g "*$1*" | xargs -o vim rg --files -g "*$1*" | xargs -o vim
} }
function psk {
ps -ef | grep $1 | grep -v grep | awk '{ print $2 }' | xargs kill -9
}