X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/8d26ff82dc680d32c4d613f39981817c039de9d5..7e489083bc0d1328c7db1b1bbf036e31c0f98ea4:/.zsh/zshrc/parts.d/50-ssh?ds=sidebyside diff --git a/.zsh/zshrc/parts.d/50-ssh b/.zsh/zshrc/parts.d/50-ssh index 772a426..4e37508 100644 --- a/.zsh/zshrc/parts.d/50-ssh +++ b/.zsh/zshrc/parts.d/50-ssh @@ -16,9 +16,23 @@ if [ -r $HOME/.ssh/known_hosts ]; then unset _myhosts fi -alias 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 +} + +alias rrsh='_ssh_proxy "su -"' compdef rrsh=ssh +alias ttsh='_ssh_proxy "tmux last"' +compdef ttsh=ssh + +alias rtsh='_ssh_proxy "tmux new su -"' +compdef rtsh=ssh + alias kssh='rm -vf -- $VARDIR/ssh/ssh_control_*(=as-60Y1omN)' # vim:ft=zsh