7 lines
176 B
Text
7 lines
176 B
Text
|
#!/bin/bash
|
||
|
if [ "$(which keychain)" == "" ]; then
|
||
|
echo "Install keychain package to get better key management"
|
||
|
else
|
||
|
eval $(keychain --eval --agents ssh,gpg id_rsa)
|
||
|
fi
|