You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#key grip from gpg2 --with-keygrip -k
!A5721CF4F81CF921FD3DA7449DB7F6496F849DF0 #disabled
D3DA7449DA577F6496F849DF021CF4F81CF921FB #enabled
~/.zshrc
~/.gpg-agent
source ~/.gpg-agent.env
~/.gpg-agent
#!/usr/bin/env zsh
if [ -e ~/.gnupg/S.gpg-agent ]
then
exit
else
pkill gpg-agent
rm -f ~/.gpg-agent.env
fi
env=`gpg-agent --daemon --enable-ssh-support`
if [ $?==0 ]
then
echo "$env" > ~/.gpg-agent.env
fi