Skip to content

Instantly share code, notes, and snippets.

@dlgg
Forked from mzedeler/.bashrc_ssh
Last active August 29, 2015 14:15
Show Gist options
  • Save dlgg/4e5b2dc291890fb831fe to your computer and use it in GitHub Desktop.
Save dlgg/4e5b2dc291890fb831fe to your computer and use it in GitHub Desktop.
#!/bin/bash
# Set up ssh-agent
SSH_ENV="$HOME/.ssh/environment"
function start_agent {
echo "Initializing new SSH agent..."
touch $SSH_ENV
chmod 600 "${SSH_ENV}"
/usr/bin/ssh-agent | sed 's/^echo/#echo/' >> "${SSH_ENV}"
. "${SSH_ENV}" > /dev/null
/usr/bin/ssh-add
}
# Source SSH settings, if applicable
if [ -f "${SSH_ENV}" ]; then
. "${SSH_ENV}" > /dev/null
kill -0 $SSH_AGENT_PID 2>/dev/null || { start_agent; }
else
start_agent
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment