Created
January 7, 2017 16:03
-
-
Save raabf/c330ac676b047f3ed1bf4eed14ab3989 to your computer and use it in GitHub Desktop.
restarts the gpg-agent. often necessary because it is so faulty program.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# restarts the gpg-agent | |
# often necessary because it is so faulty program | |
killall gpg-agent || true | |
gpg-agent --daemon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you so much!