aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--man/pass.13
-rwxr-xr-xsrc/password-store.sh24
2 files changed, 23 insertions, 4 deletions
diff --git a/man/pass.1 b/man/pass.1
index 4388401..0ef28c1 100644
--- 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
index ed86248..12ef62b 100755
--- 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