alias: ffind

This commit is contained in:
Michael Grote 2021-10-26 08:39:40 +02:00
parent cd506a5b9c
commit 15169804cd

View file

@ -5,6 +5,9 @@ function rgf {
function psk { function psk {
ps -ef | grep $1 | grep -v grep | awk '{ print $2 }' | xargs kill -9 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 ssh() { #() ist die kurzform von function
tmux rename-window "$*" tmux rename-window "$*"
command ssh "$@" command ssh "$@"