Skip to content

ref issue #9 - Updated README.md with updated usage #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 12, 2021
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