Skip to content

Instantly share code, notes, and snippets.

@mylokin
Forked from copperlight/.bashrc
Created September 18, 2017 20:30
Show Gist options
  • Save mylokin/77e6a56c0b2d0b5682168acb3571f015 to your computer and use it in GitHub Desktop.
Save mylokin/77e6a56c0b2d0b5682168acb3571f015 to your computer and use it in GitHub Desktop.
Window Subsystem for Linux ssh-agent Configuraton
# ... more above ...
# wsfl bash is not a login shell
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# ssh-agent configuration
if [ -z "$(pgrep ssh-agent)" ]; then
rm -rf /tmp/ssh-*
eval $(ssh-agent -s) > /dev/null
else
export SSH_AGENT_PID=$(pgrep ssh-agent)
export SSH_AUTH_SOCK=$(find /tmp/ssh-* -name agent.*)
fi
if [ "$(ssh-add -l)" == "The agent has no identities." ]; then
ssh-add
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment