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 0427d5ed4c64e7d1a358264dfa1ecd227011f540
parent 39a7ce70a1342690486a5ed57f162bfdfd1dcacf
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Fri, 31 Aug 2012 16:58:36 +0200

Add remove synonyms.

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

diff --git a/password-store.sh b/password-store.sh @@ -40,7 +40,7 @@ _EOF } isCommand() { case "$1" in - init|ls|show|insert|generate|remove|push|pull|help) return 0 ;; + init|ls|show|insert|generate|remove|rm|delete|push|pull|help) return 0 ;; *) return 1 ;; esac } @@ -198,7 +198,7 @@ case "$command" in clip "$pass" "$path" fi ;; - remove) + delete|rm|remove) if [[ $# -ne 1 ]]; then echo "Usage: $program $command pass-name" exit