anagram.pl
perl
GPL
It takes at least one and optionally two arguments. The first is a list of letters, the second should be a single letter that appears in the first argument. It then goes on to list all the words it can find of a minimum word length from that list, capitalising the words it found that use all the letters. If it sees a second argument, then it will list just the words that contain that letter.
The minimum word length is hard-coded in the script itself, and can be changed by editing the variable in the Settings section.
It depends on the program an
, which is basically the workhorse
of the script. Just sudo apt-get an
to install.
an
in their path, so this script fails for the super-user. No biggie, I suppose.
Probably shouldn't be running these scripts as the super-user anyway.This was initially produced to handle the Target puzzle in The Age, a daily periodical published where I live. It appears as a 3 x 3 grid of letters with the centre one highlighted. The goal is to make as many words of four letters or more containing the highlighted letter. The letters themselves make one nine-lettered word. Because I quite often don't buy the paper every day, I was missing out on solutions, so I wrote this program just to check how I do.
This script uses the word list in /usr/share/dict/words
.
You can install other word lists by installing, for example, wbritish
or
wbritish-{small|large|huge|insane}
,
and switch between them using sudo select-default-wordlist
.
The minimum length for the phrase to search for words in is set to 4, which is probably a reasonable minimum.
Tom Paton's page is a good example online of this puzzle.
Download this script here: anagram.pl.zip
Version: 1.10