dotfiles/.bash_functions
2021-10-26 08:39:40 +02:00

19 lines
463 B
Bash

# rg, gibt nur Dateipfade aus, sucht nur nach Dateinamen
function rgf {
rg --files -g "*$1*"
}
function psk {
ps -ef | grep $1 | grep -v grep | awk '{ print $2 }' | xargs kill -9
}
function ffind {
find $1 -type f -name $2
}
ssh() { #() ist die kurzform von function
tmux rename-window "$*"
command ssh "$@"
}
# sende eine Datei per Mail
# $1 = Titel und Body, $2 Pfad zu Datei
function m2m {
echo "$1" | mail -s "$1" -A "$2" michael.grote@posteo.de
}