Closed ghost closed 6 years ago
Hi.
Is it possible to store the account password encrypted, or make pass run gpg to decrypt and get password from a file?
For instance, with isync it is possible to use something like this:
PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/somefile.gpg"
Thanks.
You can use command substitution for that, for example:
pass $(gpg --quiet --decrypt ~/.password.gpg)
Oh. Thanks!
Hi.
Is it possible to store the account password encrypted, or make pass run gpg to decrypt and get password from a file?
For instance, with isync it is possible to use something like this:
PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/somefile.gpg"
Thanks.