From a95cb58ffa45cf2f25430592a7cc60b70e26f232 Mon Sep 17 00:00:00 2001 From: Chinaman Date: Tue, 29 Nov 2011 02:00:09 +0100 Subject: //util sshkill: initial commit --- util/bin/sshkill | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 util/bin/sshkill (limited to 'util/bin/sshkill') diff --git a/util/bin/sshkill b/util/bin/sshkill new file mode 100755 index 00000000..80300483 --- /dev/null +++ b/util/bin/sshkill @@ -0,0 +1,33 @@ +#! /bin/sh +# +# kill ssh client: sshkill user@host:port +# setup bash completion: . sshkill +# +if ! grep -q '^ControlPath /tmp/%u/sshmux/%r@%h:%p$' "$HOME/.ssh/config"; then + echo "Your ~/.ssh/config's ControlPath sucks!" >&2 + (exit 23) +else + if test "${0:0:1}" = -; then + if ! echo "${BASHOPTS-}" | grep -Eq '(^|:)progcomp(:|$)'; then + echo "source sshmux into something other than a progcomp'able bash" >&2 + (exit 23) + else + + # setup bash completion + comp_sshkill() { + if test $COMP_CWORD = 1; then + COMPREPLY=($(cd "/tmp/$LOGNAME/sshmux" && + ls | grep "^${COMP_WORDS[$COMP_CWORD]}.*")) + fi + } + complete -F comp_sshkill sshkill + + fi + else + + # kill ssh client + set -euf + exec pkill -f "^ssh: /tmp/$LOGNAME/sshmux/$1 \[mux\]$" + + fi +fi -- cgit v1.2.3