A CLI program that prints random words. You can customize the word case, separator, number of words, and wordlist used.
There are three AUR packages available:
: Download a versioned source archive and build locally.
: Download a precompiled binary from the releases page.
: Clone the repository and build the latest commit.
If you have Go installed, install the latest version with:
go install github.com/wordgen/cli/cmd/wordgen@latestEnsure your Go binary directory is in your PATH.
Each release contains several binaries. Download the binary for your
operating system, then put it in your PATH.
The release also includes a SHA512SUMS file and its detached signature,
SHA512SUMS.asc. The signature is created with the wordgen signing key:
070559FD6C2A19F3
To build from source, install git, go, and make.
Clone the repository, build the binary, and install it:
git clone https://github.com/wordgen/cli.git
cd cli
make && make installBy default, the binary is installed to $HOME/.local/bin.
To uninstall:
make uninstallSee wordgen -h for a full list of options.
Example output:
$ wordgen
vixen
$ wordgen -w 5
hunting clock buffoon trodden deflation
$ wordgen -w 5 -s . -c title
Ditch.Dealer.Flammable.Unearth.Yonder
The wordlists used in this program are from the wordgen/wordlists repository.
You can switch which wordlist the words are generated from with the -l, --list
option.
You can also use a local wordlist file with the -f, --file option. The file
must be a text file with one word per line.
When submitting a pull request, please ensure they are directed to the dev
branch of the repository.
Ensure your commit messages and pull request titles follow the Conventional Commits specification.
All files in this repository are licensed under the GNU Affero General Public License v3.0 or later - see the LICENSE file for details.