From 9118a489beaab1f11e1b14e10e829d2d0f208282 Mon Sep 17 00:00:00 2001 From: Anand Date: Sun, 12 Dec 2021 14:04:31 +0530 Subject: [PATCH 1/3] ref issue #9 - Updated README.md with updated usage --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 581965b..056223e 100644 --- a/README.md +++ b/README.md @@ -73,9 +73,9 @@ Usage usage: varuh [-h|--help] [-I|--init ""] [-d|--decrypt ""] [-C|--clone ""] [-R|--remove ""] [-U|--use-db ""] [-f|--find ""] [-E|--edit ""] - [-l|--list-entry ""] [-x|--export ""] [-g|--genpass - ""] [-e|--encrypt] [-A|--add] [-p|--path] [-a|--list-all] - [-s|--show] [-c|--copy] [-v|--version] + [-l|--list-entry ""] [-x|--export ""] [-e|--encrypt] + [-A|--add] [-p|--path] [-a|--list-all] [-g|--genpass] [-s|--show] + [-c|--copy] [-v|--version] Password manager for the command line for Unix like operating systems @@ -92,11 +92,11 @@ Usage -E --edit Edit entry by -l --list-entry List entry by -x --export Export all entries to - -g --genpass Generate password of given -e --encrypt Encrypt the current database -A --add Add a new entry -p --path Show current database path -a --list-all List all entries in current database + -g --genpass Generate a strong password of length from 8 - 12 -s --show Show passwords when listing entries -c --copy Copy password to clipboard -v --version Show version information and exit From 26ed9f52f0cf6e23c0c972e8fb2533320cc00fda Mon Sep 17 00:00:00 2001 From: Anand Date: Sun, 12 Dec 2021 14:05:48 +0530 Subject: [PATCH 2/3] ref issue #9 - Updated help for genpass --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 343073d..6f90f87 100644 --- a/main.go +++ b/main.go @@ -185,7 +185,7 @@ func initializeCmdLine(parser *argparse.Parser) map[string]interface{} { {"A", "add", "Add a new entry", "", ""}, {"p", "path", "Show current database path", "", ""}, {"a", "list-all", "List all entries in current database", "", ""}, - {"g", "genpass", "Generate a strong password of length from 8 - 12", "", ""}, + {"g", "genpass", "Generate a strong password of length from 12 - 16", "", ""}, {"s", "show", "Show passwords when listing entries", "", ""}, {"c", "copy", "Copy password to clipboard", "", ""}, {"v", "version", "Show version information and exit", "", ""}, From d30e22930b125de438487c4fbff266debe6228d8 Mon Sep 17 00:00:00 2001 From: Anand Date: Sun, 12 Dec 2021 14:05:55 +0530 Subject: [PATCH 3/3] ref issue #9 - Updated help for genpass --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 056223e..db30300 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Usage -A --add Add a new entry -p --path Show current database path -a --list-all List all entries in current database - -g --genpass Generate a strong password of length from 8 - 12 + -g --genpass Generate a strong password of length from 12 - 16 -s --show Show passwords when listing entries -c --copy Copy password to clipboard -v --version Show version information and exit