The original Hunspell had two important utilities:
# print all forms for all words whose roots are given in `roots.dic`
# and make use of affix rules defined in `affixes.aff`:
unmunch roots.dic affixes.aff
# print the forms of ONE given word (a single root with no affix rule)
# which are allowed by the reference dictionary defined by the pair of
# `roots.dic` and `affixes.aff`:
wordforms affixes.aff roots.dic word
How to achieve this in spylls.hunspell?
I use Hunspell to generate Scrabble dictionaries, and I am looking into replacing it with spylls.hunspell.
The original Hunspell had two important utilities:
How to achieve this in
spylls.hunspell?I use Hunspell to generate Scrabble dictionaries, and I am looking into replacing it with
spylls.hunspell.