password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 753e216884665daa862ca0503afdd542bb6597e0
parent b6300c2ba5d7e1e8782f077370b7942ce9b8b819
Author: Matthew Ramirez <matt@winepos.com>
Date:   Sun, 19 Aug 2012 10:28:28 -0400

now using gpg_id as a var

Diffstat:
Mpassword-store.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/password-store.sh b/password-store.sh @@ -83,8 +83,8 @@ case "$command" in fi gpg_id="$1" mkdir -v -p "$PREFIX" - echo "gpg_id" > "$ID" - echo "Password store initialized for gpg_id." + echo "$gpg_id" > "$ID" + echo "Password store initialized for $gpg_id." exit 0 ;; help)