From fe007423cfbaf2d5f6273808d0a32a869173a897 Mon Sep 17 00:00:00 2001 From: Clay Gomera Date: Sat, 15 Jun 2024 21:23:16 -0400 Subject: [PATCH] Fixed README --- README.md | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 5e6ee7d..af086a1 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To use passgen, open your terminal and execute the program with the desired options. ```bash -passgen [OPTIONS] +./passgen [OPTIONS] ``` ## Options @@ -68,34 +68,34 @@ passgen [OPTIONS] 1. Generate a default password: -```bash -passgen -``` + ```bash + ./passgen + ``` -This will generate a 24-character password with a mix of lowercase letters, -uppercase letters, digits, and special characters. + This will generate a 24-character password with a mix of lowercase letters, + uppercase letters, digits, and special characters. 2. Generate a password with specific options: -```bash -passgen -L 12 -lud -``` + ```bash + ./passgen -L 12 -lud + ``` -This will generate a 12-character password with only lowercase letters, -uppercase letters, digits, and no special characters. + This will generate a 12-character password with only lowercase letters, + uppercase letters, digits, and no special characters. 3. Display help message: -```bash -passgen -h -``` + ```bash + passgen -h + ``` -This will display the usage and available options. + This will display the usage and available options. 4. Display version: -```bash -passgen -v -``` - -This will display the version of Passgen. + ```bash + passgen -v + ``` + + This will display the version of Passgen.