diff options
author | root <root@kremium> | 2011-12-01 20:59:27 +0100 |
---|---|---|
committer | root <root@kremium> | 2011-12-01 20:59:27 +0100 |
commit | 2d733f93b82a1c11a014af1a3dd07d3540282356 (patch) | |
tree | ec23111722523ec03ec7d35e708735cf787c6f79 /util | |
parent | bfa204a580a503a216cedbedd36586fb00458181 (diff) | |
parent | 4be0c81eafe0f315b91eb13d5d9aa8886faef308 (diff) |
Merge branch 'master' of http://github.com/krebscode/painload
Diffstat (limited to 'util')
-rwxr-xr-x | util/bin/sshkill | 33 |
1 files changed, 33 insertions, 0 deletions
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 |