dotfiles/.bash_functions

20 lines
444 B
Bash
Raw Normal View History

2021-06-23 20:18:14 +02:00
# rg, gibt nur Dateipfade aus, sucht nur nach Dateinamen
function rgf {
2021-06-23 20:36:45 +02:00
rg --files -g "*$1*"
2021-06-23 20:18:14 +02:00
}
2021-07-03 11:07:55 +02:00
function psk {
ps -ef | grep $1 | grep -v grep | awk '{ print $2 }' | xargs kill -9
}
2021-10-26 08:39:40 +02:00
function ffind {
find $1 -type f -name $2
}
2021-08-24 08:28:27 +02:00
ssh() { #() ist die kurzform von function
2021-08-23 23:06:35 +02:00
tmux rename-window "$*"
command ssh "$@"
}
2021-10-23 14:29:05 +02:00
# sende eine Datei per Mail
2021-11-02 19:23:00 +01:00
# $1 = Pfad zu Datei
2021-10-23 14:29:05 +02:00
function m2m {
2021-11-02 19:23:00 +01:00
echo "$1" | mail -s "$1" -A "$1" michael.grote@posteo.de
2021-10-23 14:29:05 +02:00
}