Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ Usage
usage: varuh [-h|--help] [-I|--init "<value>"] [-d|--decrypt "<value>"]
[-C|--clone "<value>"] [-R|--remove "<value>"] [-U|--use-db
"<value>"] [-f|--find "<value>"] [-E|--edit "<value>"]
[-l|--list-entry "<value>"] [-x|--export "<value>"] [-g|--genpass
"<value>"] [-e|--encrypt] [-A|--add] [-p|--path] [-a|--list-all]
[-s|--show] [-c|--copy] [-v|--version]
[-l|--list-entry "<value>"] [-x|--export "<value>"] [-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
Expand All @@ -92,11 +92,11 @@ Usage
-E --edit <id> Edit entry by <id>
-l --list-entry <id> List entry by <id>
-x --export <filename> Export all entries to <filename>
-g --genpass <length> Generate password of given <length>
-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
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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", "", ""},
Expand Down