Skip to content

Instantly share code, notes, and snippets.

@matlink
Created December 13, 2020 10:12
Show Gist options
  • Save matlink/c63d8a68096a693caf050b63929531c1 to your computer and use it in GitHub Desktop.
Save matlink/c63d8a68096a693caf050b63929531c1 to your computer and use it in GitHub Desktop.
# Add SSH keys
ssh-add -L >/dev/null 2>&1
if [ $? -eq 1 ]; then
find ~/.ssh -maxdepth 1 -type f -regex '~/.ssh/id_[^.]*' -print0 | xargs -0 ssh-add
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment