Skip to content

Instantly share code, notes, and snippets.

View rickythefox's full-sized avatar
🏴
GMT-1

Richard G rickythefox

🏴
GMT-1
View GitHub Profile
@rickythefox
rickythefox / pwgen
Created December 5, 2025 08:33
pwgen - readable, pronounceable, memorable password generator
#!/bin/bash
# Consonants and vowels for pronounceable passwords
conso=(b c d f g h j k l m n p r s t v w x y z)
vowel=(a e i o u)
spchars=('!' '@' '#' '$' '%' '^' '&' '*' '-' '+' '?' '=' '~')
# Generate a single password
generate_password() {
local len=10