Fixed README
This commit is contained in:
parent
d11091ba27
commit
fe007423cf
1 changed files with 20 additions and 20 deletions
40
README.md
40
README.md
|
@ -35,7 +35,7 @@ To use passgen, open your terminal and execute the program with the desired
|
||||||
options.
|
options.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
passgen [OPTIONS]
|
./passgen [OPTIONS]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Options
|
## Options
|
||||||
|
@ -68,34 +68,34 @@ passgen [OPTIONS]
|
||||||
|
|
||||||
1. Generate a default password:
|
1. Generate a default password:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
passgen
|
./passgen
|
||||||
```
|
```
|
||||||
|
|
||||||
This will generate a 24-character password with a mix of lowercase letters,
|
This will generate a 24-character password with a mix of lowercase letters,
|
||||||
uppercase letters, digits, and special characters.
|
uppercase letters, digits, and special characters.
|
||||||
|
|
||||||
2. Generate a password with specific options:
|
2. Generate a password with specific options:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
passgen -L 12 -lud
|
./passgen -L 12 -lud
|
||||||
```
|
```
|
||||||
|
|
||||||
This will generate a 12-character password with only lowercase letters,
|
This will generate a 12-character password with only lowercase letters,
|
||||||
uppercase letters, digits, and no special characters.
|
uppercase letters, digits, and no special characters.
|
||||||
|
|
||||||
3. Display help message:
|
3. Display help message:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
passgen -h
|
passgen -h
|
||||||
```
|
```
|
||||||
|
|
||||||
This will display the usage and available options.
|
This will display the usage and available options.
|
||||||
|
|
||||||
4. Display version:
|
4. Display version:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
passgen -v
|
passgen -v
|
||||||
```
|
```
|
||||||
|
|
||||||
This will display the version of Passgen.
|
This will display the version of Passgen.
|
||||||
|
|
Loading…
Reference in a new issue