Created
March 4, 2019 15:10
-
-
Save lawrencewalters/4c5cd0e2913a120720d2cb506d94f2a2 to your computer and use it in GitHub Desktop.
use bash to generate password with diceware word list
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
for run in {1..6}; do shuf -i 1-6 -n 5 -r|perl -ne 'chomp;print' | xargs -I pattern grep pattern diceware.wordlist.asc; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment