pw (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
#!/usr/bin/env bash
# pw - a mnml password manager
# export PW_DIR to your own path
[[ -z "$PW_DIR" ]] && PW_DIR="$HOME/.pw"
init() {
if [[ ! -e "$PW_DIR" ]]; then
mkdir -p "$PW_DIR"
echo "pw: password directory initialized at $PW_DIR"
else
echo "PW_DIR is $PW_DIR"
die "$PW_DIR exists"
fi
}
add() {
# $1: path to file
# $2 [optional]: password text
[[ -z "$PW_KEY" ]] && die "\$PW_KEY not set"
if [[ "$#" -eq 2 ]]; then
pass="$2"
else
pass="$(pwgen 25 1 -s)"
echo "pw: generated password for $1"
fi
if [[ ! -f "$PW_DIR/$1.gpg" ]]; then
echo "$pass" | gpg2 -er "$PW_KEY" -o "$PW_DIR/$1.gpg"
echo "pw: $PW_DIR/$1.gpg created"
else
die "the file $PW_DIR/$1.gpg exists"
fi
}
del() {
read -rn 1 -p "pw: are you sure you want to delete $1? [y/n]: "
printf "\n"
[[ "$REPLY" == [yY] ]] && {
rm -f "$PW_DIR/$1.gpg"
echo "pw: deleted $1"
}
}
show() {
gpg2 --decrypt --quiet --use-agent "$PW_DIR/$1.gpg"
}
copy() {
show "$1" | xclip -selection clipboard
echo "pw: copied $1 to clipboard"
}
usage() {
usage="
pw - mnml password manager
usage: pw [options]
All options except -i and -h require a NAME argument.
options:
-i Initializes password directory at \$HOME/.pw or at \$PW_DIR, if it exists.
-a Add a password.
-g Generate a password.
-s Print password to STDOUT.
-c Copy existing password to clipboard.
-d Delete password.
-h Display this help message and exit.
Requires PW_KEY to be set. Optionally, set PW_DIR for custom directory location.
"
echo "$usage"
exit 1
}
die() {
printf "error: %s\n" "$1"
exit 1
}
main() {
[[ -z "$1" ]] && {
usage
}
while getopts "ia:g:s:c:d:h" options
do
case "$options" in
i) init ;;
g) add "$OPTARG" ;;
a)
read -rsp "enter password: " pass
printf "\n"
add "$OPTARG" "$pass"
;;
s) show "$OPTARG" ;;
c) copy "$OPTARG" ;;
d) del "$OPTARG" ;;
*|h) usage ;;
esac
done
shift $(( OPTIND -1 ))
}
main "$@"
|