mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00
7 lines
192 B
Bash
Executable file
7 lines
192 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Assert an ssh-agent (which is empty at the beginning)
|
|
if command -v keychain > /dev/null 2>&1; then
|
|
eval "$(keychain -q --nogui --agents ssh --timeout 600 --eval)"
|
|
fi
|
|
|