Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save lawrencewalters/4c5cd0e2913a120720d2cb506d94f2a2 to your computer and use it in GitHub Desktop.
use bash to generate password with diceware word list
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