Skip to content

Instantly share code, notes, and snippets.

@charlesfair
Forked from copperlight/.bashrc
Created July 31, 2019 04:43
Show Gist options
  • Save charlesfair/f402f963f911254fabe865d7d5d43d37 to your computer and use it in GitHub Desktop.
Save charlesfair/f402f963f911254fabe865d7d5d43d37 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