This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
OlderNewer