Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Xotchkass authored Aug 25, 2022
1 parent 238eed1 commit 3c1133a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
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
```

0 comments on commit 3c1133a

Please sign in to comment.