You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
300 B
24 lines
300 B
3 years ago
|
# psgen
|
||
|
## A minimal command-line password generator.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
./psgen [OPTIONAL PASSWORD LENGTH HERE]
|
||
|
|
||
|
### Examples
|
||
|
|
||
|
```
|
||
|
./psgen 255
|
||
|
```
|
||
|
will output a password with length of 255
|
||
|
|
||
|
```
|
||
|
./psgen
|
||
|
```
|
||
|
will output a password with length of 8
|
||
|
|
||
|
```
|
||
|
./psgen 10
|
||
|
```
|
||
|
will output a password with length of 10
|