mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
6 lines
182 B
Text
6 lines
182 B
Text
# ssh keychain, if no agent set
|
|
if [ -z "$SSH_AUTH_SOCK" ]; then
|
|
if which keychain 2>&1 >/dev/null; then
|
|
eval $(keychain --eval --agents ssh -Q --quiet id_rsa)
|
|
fi
|
|
fi
|