diff options
Diffstat (limited to '.req_pwd.sh')
-rwxr-xr-x | .req_pwd.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.req_pwd.sh b/.req_pwd.sh new file mode 100755 index 0000000..bce131b --- /dev/null +++ b/.req_pwd.sh @@ -0,0 +1,14 @@ +#!/bin/sh -e +# A simple wrapper script to deal with situations where pass, password-store, or +# my gpg key is not available. + +pass "$1" && exit + +# if pass fails, request password manually +stty -echo +printf "Password: " >&2 +read passwd +stty echo +printf "\n" >&2 + +printf "$passwd" |