Skip to content

Instantly share code, notes, and snippets.

@cyb3rd4d
Created December 16, 2016 08:40
Show Gist options
  • Save cyb3rd4d/48f562e2a8748ae5448a95ca5163e0d0 to your computer and use it in GitHub Desktop.
Save cyb3rd4d/48f562e2a8748ae5448a95ca5163e0d0 to your computer and use it in GitHub Desktop.
Load ssh keys on MacOS Sierra (Oh My ZSH plugin)
# Load ssh keys
ssh-add -l >> /dev/null
if [ ! $? -eq 0 ]; then
echo "SSH keys loading..."
ssh-add -A
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment