#!/bin/sh # Used for work laptop. # Add personal key and start the ssh-agent with it. set -xe ssh_personal_key="${HOME}/.ssh/id_personal" test -f "${ssh_personal_key}" eval "$(ssh-agent)" ssh-add "${ssh_personal_key}" set +xe