Skip to content

Instantly share code, notes, and snippets.

@wtnabe
Created January 3, 2011 23:56
Show Gist options
  • Save wtnabe/764202 to your computer and use it in GitHub Desktop.
Save wtnabe/764202 to your computer and use it in GitHub Desktop.
clean up your uncontrollable ssh sessions ( also live sessions X-)
#! /bin/sh
#
# clean up your uncontrollable ssh sessions
#
ps a | awk '$5 ~ /^ssh/ {print $1}' | xargs kill -KILL
find ~/.ssh/ -name 'master-*' | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment