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