You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash
|
|
|
|
ENVFILE=~/.bash/ssh-agent.env
|
|
|
|
if [ -f $ENVFILE ] ; then
|
|
. $ENVFILE > /dev/null
|
|
if ! kill -0 $SSH_AGENT_PID > /dev/null 2>&1; then
|
|
eval $(ssh-agent | tee $ENVFILE)
|
|
ssh-add
|
|
fi
|
|
else
|
|
eval $(ssh-agent | tee $ENVFILE)
|
|
ssh-add
|
|
fi
|