diff --git a/README.md b/README.md index 581965b..db30300 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 12 - 16 -s --show Show passwords when listing entries -c --copy Copy password to clipboard -v --version Show version information and exit 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", "", ""},