From 01693bf200fe8bd7448cf227230f610f52086b80 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Tue, 26 Nov 2024 07:53:11 +0100 Subject: [PATCH] Improve examples in README --- README.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f529ab0..8fe2c94 100644 --- a/README.md +++ b/README.md @@ -25,22 +25,25 @@ Or, on OpenBSD: `pw` -Generate password using default settings. +Generate password using default settings: at lease one digit, at least one lower +case letter, at least one upper case letter, at least one symbol from the set +'_-=+<>,.!@#$%^&*', and a length of 24 characters. ## Examples -Generate a password with at least one lower case letter, one upper case letter, -and one digit, with a length of 20 characters: +Generate a password with at least one lower case letter, at least two upper case +letters, at least three digits, at least four symbols, and a length of 20 +characters: -`pw -l 1 -u 1 -d 1 -c 20` +`pw -l 1 -u 2 -d 3 -s 4 -c 20` or, more compact: -`pw -l1 -u1 -d1 -c20` +`pw -l1 -u2 -d3 -s4 -c20` -Generate a password containing symbols from a given set: +The same, but now with symbols chosen from the set '+', '-', '=', and '@': -`pw -S '+-=@'` +`pw -l1 -u2 -d3 -s4 -c20 -S '+-=@'` ## Documentation