diff --git a/main.go b/main.go index 68713a8..1fe4aa9 100644 --- a/main.go +++ b/main.go @@ -191,8 +191,8 @@ func newCommands() *baseCommand { NewBoolCommand(cmdHelp, "h", false, "Get help"), NewBoolCommand(cmdNoCapitalize, "A", false, "Don't include capital letters in the password"), NewBoolCommand(cmdNoNumerals, "0", false, "Don't include numbers in the password"), - NewBoolCommand(cmdAmbiguous, "B", false, "Don't include ambiguous characters in the password"), NewBoolCommand(cmdNoVowels, "v", false, "Don't include any vowels so as to avoid accidental nasty words"), + NewBoolCommand(cmdAmbiguous, "B", false, "Include ambiguous characters in the password"), NewBoolCommand(cmdSymbol, "y", false, "Include at least one special symbol in the password"), NewStringCommand(cmdRemoveChars, "r", "", "Remove characters from the set of characters to generate passwords (ex: -r or --remove-chars=)"), NewStringCommand(cmdSha1, "H", "", "Use sha1 hash of given file as a (not so) random generator (ex: -H or -sha1=path/to/file[#seed])"),