-
-
Save mzedeler/45ef2be24d9ff13b33ba to your computer and use it in GitHub Desktop.
bashrc snippet for initializing ssh agent and adding ssh key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
Nice work.
- I replaced
touchandchmodwithchmod -f ...to silence errors, and save 1 line. - I removed
echoto keep output clean when logging in. - I removed
sedto save overhead, and rely on> /dev/nullto silence the output.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @mzedeler, works great!