wordlist: Command-line tool to get random words

[ apache, application, library, program, text ] [ Propose Tags ]

A command-line application that outputs a random list of words, designed to generate memorable passwords.


[Skip to Readme]

Modules

[Last Documentation]

  • Wordlist
    • Wordlist.Args

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.1, 0.1.0.2, 0.1.0.4, 0.1.0.5, 0.1.0.6, 0.1.0.7
Change log changelog.md
Dependencies base (>=4.17 && <4.18), MonadRandom (>=0.5.1 && <0.6), optparse-applicative (>=0.16 && <0.18), text (>=2 && <2.1), vector (>=0.12 && <0.13), wordlist [details]
License Apache-2.0
Author Chris Martin <ch.martin@gmail.com>
Maintainer Chris Martin <ch.martin@gmail.com>
Category Text, Application
Home page https://github.com/chris-martin/wordlist
Uploaded by chris_martin at 2023-03-22T21:54:16Z
Distributions
Executables wordlist
Downloads 1262 total (18 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2023-03-23 [all 2 reports]

Readme for wordlist-0.1.0.7

[back to package description]

wordlist is a command-line application that outputs a random list of words, designed to generate memorable passwords.

Example usage

Download a list of words:

bash$ export WORD_LIST_PATH="$HOME/words"
bash$ wget -O "$WORD_LIST_PATH" 'https://raw.githubusercontent.com/trezor/python-mnemonic/ec21884db9f3af236732121e7ccf97435b924915/mnemonic/wordlist/english.txt'

By default, @wordlist@ generates four words separated by spaces.

bash$ wordlist
afraid avoid sunset cactus

The number of words and the separator are customizable.

bash$ wordlist -n 3 -d '/'
kite/wire/impact

For full command-line documentation:

bash$ wordlist --help