Hi. No need to say that putting passwords in plain text file is a bad idea. But if I use .netrc, wouldn't below be a bit (lot?) safer? Assuming I have a good passphrase on my key.
It seems so simple, that I fear I am not getting anything out of it. Morten #!/bin/sh # Install utils/gnupg2 # gpg2 --generate-key # mkdir ~/secrets # gpg2 -e -r y...@email.com <~/.netrc >~/secrets/netrc.enc # rm ~/.netrc # mkfifo ~/.netrc while true ; do gpg2 -d <~/secrets/netrc.enc >~/.netrc done -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple