Skip to content

Instantly share code, notes, and snippets.

@fiddyspence
Created February 16, 2015 16:01
Show Gist options
  • Save fiddyspence/6fd1a76eaabe7cc80b3b to your computer and use it in GitHub Desktop.
Save fiddyspence/6fd1a76eaabe7cc80b3b to your computer and use it in GitHub Desktop.
ssh blurn
function ssh {
while true ; do
/usr/bin/ssh -A $*
if [ $? == '0' ]; then
break
fi
sleep 1
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment