blob: e99764c3afc7dd5d01ccaf8fecd866452e9e2b23 (
plain) (
tree)
|
|
#!/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
|