X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/d7dfa389ef7b0fe5d476210b6b80ea0dc94cea7f..a0f8f852493b596a56df2ff9c287c7e856718a78:/.zsh/zshrc/parts.d/50-ssh diff --git a/.zsh/zshrc/parts.d/50-ssh b/.zsh/zshrc/parts.d/50-ssh index ab151c0..c734343 100644 --- a/.zsh/zshrc/parts.d/50-ssh +++ b/.zsh/zshrc/parts.d/50-ssh @@ -45,4 +45,24 @@ kssh() { } compdef -e "compset -P ${_SSH_SOCKDIR}/ || PREFIX=${_SSH_SOCKDIR}/; _files -W ${_SSH_SOCKDIR}" kssh +scd() { + local args host dir arg + + for arg in "$@"; do + case "$arg" in + (*:*) host=${arg%%:*}; dir="${arg#*:}";; + (*) args="${args:+$args }$arg";; + esac + done + + if [[ -z $dir ]]; then + ssh "$@" + + else + + ssh -t $args $host "cd '${dir:gs/\'/\'\\\'\'}' && exec \$SHELL --login" + fi +} +compdef scd=scp + # vim:ft=zsh