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 b11e15a02b938f5cb3c6ce42f5307c92c0748d49
parent 59b5377ab155e0a00f57287d8b55ca5b05f0974e
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Thu, 13 Sep 2012 01:30:27 +0200

Add --version switch, per request.

Diffstat:
Mman/pass.1 | 3+++
Msrc/password-store.sh | 24++++++++++++++++++++----
2 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/man/pass.1 b/man/pass.1 @@ -116,6 +116,9 @@ using the password store as the git repository. .TP \fBhelp\fP Show usage message. +.TP +\fBversion\fP +Show version information. .SH SIMPLE EXAMPLES diff --git a/src/password-store.sh b/src/password-store.sh @@ -12,11 +12,21 @@ GIT="$PREFIX/.git" export GIT_DIR="$GIT" export GIT_WORK_TREE="$PREFIX" +version() { + cat <<_EOF +|-----------------------| +| Password Store | +| v.1.2.2 | +| by zx2c4 | +| | +| Jason@zx2c4.com | +| Jason A. Donenfeld | +|-----------------------| +_EOF +} usage() { + version cat <<_EOF -Password Store -by Jason Donenfeld - Jason@zx2c4.com Usage: $program init gpg-id @@ -45,11 +55,13 @@ Usage: specified by git-command-args. $program help Show this text. + $program version + Show version information. _EOF } isCommand() { case "$1" in - init|ls|list|show|insert|edit|generate|remove|rm|delete|push|pull|git|help|--help) return 0 ;; + init|ls|list|show|insert|edit|generate|remove|rm|delete|push|pull|git|help|--help|version|--version) return 0 ;; *) return 1 ;; esac } @@ -99,6 +111,10 @@ case "$command" in usage exit 0 ;; + version|--version) + version + exit 0 + ;; esac if ! [[ -f $ID ]]; then