bash: ssh verbessert

This commit is contained in:
Michael Grote 2021-11-09 11:32:43 +01:00
parent 364702e830
commit 53db978a6f

View file

@ -1,9 +1,5 @@
rg --files -g "*$1*" rg --files -g "*$1*"
} }
ssh() { #() ist die kurzform von function
tmux rename-window "$*"
command ssh "$@"
}
function sgc { function sgc {
@ -86,4 +82,13 @@ function rgi {
fi fi
fi fi
} }
function ssh {
# benennt das aktuelle tmux-windows nach dem ssh-ziel
# baut ssh-verbindung auf
if [ -n "${TMUX}" ]; then
tmux rename-window "$*"
fi
command ssh "$@"
}