dotfiles/.bash_functions
2021-08-19 11:16:21 +02:00

14 lines
411 B
Bash

# deaktiviert Flow-Control
# https://unix.stackexchange.com/questions/332791/how-to-permanently-disable-ctrl-s-in-terminal
stty -ixon
# rg, gibt nur Dateipfade aus, sucht nur nach Dateinamen
function rgf {
rg --files -g "*$1*"
}
# übergibt gefundene dateien an vim
function rgv {
rg --files -g "*$1*" | xargs -o vim
}
function psk {
ps -ef | grep $1 | grep -v grep | awk '{ print $2 }' | xargs kill -9
}