From 51a6796b5d7a7cb0303824270ed6ffd86fc3ce19 Mon Sep 17 00:00:00 2001 From: Billie Thompson Date: Sat, 28 Oct 2017 22:07:15 +0100 Subject: [PATCH] Duplicate pwgen command to osx pwgen is available on linux and OSX. This duplicates it to both environments. This means you'll be able to use the reference on both. --- pages/osx/pwgen.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/osx/pwgen.md diff --git a/pages/osx/pwgen.md b/pages/osx/pwgen.md new file mode 100644 index 000000000..70f4cc67f --- /dev/null +++ b/pages/osx/pwgen.md @@ -0,0 +1,15 @@ +# pwgen + +> Generate pronounceable passwords. + +- Generate random password with s[y]mbols: + +`pwgen -y {{length}}` + +- Generate secure, hard-to-memorize passwords: + +`pwgen -s {{length}}` + +- Generate password with at least one capital letter in them: + +`pwgen -c {{length}}`