simple English cli dictionary, that uses en-word.net database of english words
- Fast English word lookup
- Supports both exact matching and prefix matching
- Displays definitions and example usage
- Checks if new DB is available
- Offline access after initial download
go install github.com/kamildemocko/goendic/v2/cmd/endic@latestendic [OPTIONS] WORD-e: Use exact matching (default: prefix matching)-l: Return all results (default: limited to 10)-u: Force to update database-d: Debug mode (hidden in usage)
# Search for words starting with "happy"
goendic happy
# Search for exact word "happy"
goendic -e happy
# Show all results for words starting with "happy" instead of showing just first 10
goendic -l happy
- Downloads English dictionary data from en-word.net
- Stores data in a local SQLite database with FTS5 for fast text search
- Provides command-line interface for word lookups