-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# passgen-go | ||
just another CLI password generator | ||
|
||
## Install | ||
`go install github.com/Xotchkass/passgen-go@latest` | ||
|
||
## Usage | ||
``` | ||
Usage: main [--length LENGTH] [--number NUMBER] [--charactergroups CHARACTERGROUPS] [--include INCLUDE] [--exclude EXCLUDE] [--clipboard] | ||
Options: | ||
--length LENGTH, -l LENGTH | ||
Length of generated password [default: 15] | ||
--number NUMBER, -n NUMBER | ||
Number of generated passwords [default: 1] | ||
--charactergroups CHARACTERGROUPS, -g CHARACTERGROUPS | ||
Which group of characters include in password. Options: u - upper case latin letters [A-Z]. l - lower case latin letters [a-z]. d - digits [0-9]. s - symbols [~!@#$%^&*()_-+={[}]|\:;"'<,>.?/] [default: ULD] | ||
--include INCLUDE, -i INCLUDE | ||
additional characters to include | ||
--exclude EXCLUDE, -e EXCLUDE | ||
characters to exclude | ||
--clipboard, -c if set - writes generated password in clipboard instead of stdin. ignored if '-n' > 1 | ||
--help, -h display this help and exit | ||
``` |