wordlist: Command-line tool to get random words

[ apache, application, library, program, text ] [ Propose Tags ] [ Report a vulnerability ]

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, 0.1.0.8
Change log changelog.md
Dependencies base (>=4.20 && <4.21), MonadRandom (>=0.6 && <0.7), optparse-applicative (>=0.18 && <0.19), text (>=2.1 && <2.2), vector (>=0.13 && <0.14), wordlist [details]
License Apache-2.0
Author Chris Martin <ch.martin@gmail.com>
Maintainer Chris Martin <ch.martin@gmail.com>
Uploaded by chris_martin at 2026-06-03T05:21:21Z
Category Text, Application
Home page https://codeberg.org/chris-martin/wordlist
Distributions
Executables wordlist
Downloads 1580 total (16 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 2026-06-03 [all 2 reports]

Readme for wordlist-0.1.0.8

[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