Created
February 16, 2015 16:01
-
-
Save fiddyspence/6fd1a76eaabe7cc80b3b to your computer and use it in GitHub Desktop.
ssh blurn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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