X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/3bf6f0a97128a150976cafb771a09caf42df5db4..c61b78f6631ca529dc36a7df58830b2dec94bb95:/.zsh/zshrc/parts.d/50-ssh diff --git a/.zsh/zshrc/parts.d/50-ssh b/.zsh/zshrc/parts.d/50-ssh index 98f730d..53d189c 100644 --- a/.zsh/zshrc/parts.d/50-ssh +++ b/.zsh/zshrc/parts.d/50-ssh @@ -16,9 +16,24 @@ if [ -r $HOME/.ssh/known_hosts ]; then unset _myhosts fi -rrsh() { ssh "${@:-}" -t /bin/su - } +_ssh_proxy() { + local cmd sshopts cmdopts + cmd="$1"; shift + sshopts="${*%%--*}"; sshopts="${sshopts%% }" + cmdopts="${*#$sshopts}"; cmdopts="${cmdopts#*-- }" + eval ssh $sshopts -t $cmd $cmdopts +} + +# need functions instead of aliases for completion +rrsh() { _ssh_proxy "su -" "$@" } compdef rrsh=ssh +ttsh() { _ssh_proxy "tmux last" "$@" } +compdef ttsh=ssh + +rtsh() { _ssh_proxy "tmux new su -" "$@" } +compdef rtsh=ssh + alias kssh='rm -vf -- $VARDIR/ssh/ssh_control_*(=as-60Y1omN)' # vim:ft=zsh