Created
February 23, 2024 23:49
-
-
Save Frizlab/fbd3971a42a4fd07765758b095623377 to your computer and use it in GitHub Desktop.
gpg-pass-from-*
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 | |
set -euo pipefail | |
exec gpg --pinentry-mode=loopback --passphrase="$FRZ_GPG_PASS" "$@" |
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 | |
set -euo pipefail | |
exec gpg --pinentry-mode=loopback --passphrase-fd=7 "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment