Skip to content

Instantly share code, notes, and snippets.

@MadanThangavelu
Forked from mikluko/ssh-reagent
Last active August 29, 2015 14:10
Show Gist options
  • Save MadanThangavelu/5d1a978e6af1fd2e5eb5 to your computer and use it in GitHub Desktop.
Save MadanThangavelu/5d1a978e6af1fd2e5eb5 to your computer and use it in GitHub Desktop.
ssh-reagent () {
for agent in /tmp/ssh-*/agent.*; do
export SSH_AUTH_SOCK=$agent
if ssh-add -l 2>&1 > /dev/null; then
echo Found working SSH Agent:
ssh-add -l
return
fi
done
echo Cannot find ssh agent - maybe you should reconnect and forward it?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment