Eliminated proper names, fiddled with included word lengths, formatting
This commit is contained in:
parent
e946ed92d1
commit
5c618a5046
12
passphrase
12
passphrase
@ -1,18 +1,14 @@
|
|||||||
#!/bin/bash
|
!/bin/bash
|
||||||
|
|
||||||
# Generates random phrases appropriate for memorable but secure passwords.
|
# Generates random phrases appropriate for memorable but secure passwords.
|
||||||
# Picks three words of intermediate length from local dictionary file.
|
# Picks three words of intermediate length from local dictionary file.
|
||||||
# Displays multiple sets.
|
# Displays multiple sets.
|
||||||
|
|
||||||
for z in {1..5}
|
for z in {1..5}; do
|
||||||
|
|
||||||
do
|
for i in {1..5}; do
|
||||||
|
|
||||||
for i in {1..5}
|
echo $(grep "^[^'A-Z]\{3,8\}$" /usr/share/dict/words|shuf -n3)
|
||||||
|
|
||||||
do
|
|
||||||
|
|
||||||
echo $(grep "^[^']\{4,7\}$" /usr/share/dict/words|shuf -n3)
|
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user