summaryrefslogtreecommitdiffstats
path: root/.req_pwd.sh
blob: 28518b78589553dc184940574303c91d38b422b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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

# maybe gpg-agent is acting up, retry after restarting it
gpg-connect-agent reloadagent /bye >&2
pass "$1" && exit

# if pass fails, request password manually
stty -echo
printf "Password: " >&2
read passwd
stty echo
printf "\n" >&2

printf "$passwd"