The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

words -- find words which can be made from a string of letters

SYNOPSIS

words [-w word-file] [-m min-length] letters

DESCRIPTION

words prints all the uncapitalized words in the word list that can be made from the string of letters. Each letter can appear in a word once for each time it appears in the string.

OPTIONS

words accepts the following options:

-w word-file

By default, words looks for a word-file named 'wordlist' in the same directory as the executable. Use the -w option to specify the path to an alternate word list.

-m min-length

By default, words prints words of any length that can be made from the string of letters. Use the -m option to specify the minimum length of each word. words will skip any words that are less than the specified length.

FILES

wordlist

The list of words, found with the executable.

For a comprehensive word list, the author recommends the ENABLE word list, with more than 172,000 words, which can be found at http://personal.riverusers.com/~thegrendel/software.html.

BUGS

This implementation of words has no known bugs.

REVISION HISTORY

    $Log: words,v $
    Revision 1.2  2004/08/05 14:17:44  cwest
    cleanup, new version number on website

    Revision 1.4  2003/06/06 02:27:35  rjk
    trivial changes to POD
    new email address

    Revision 1.3  1999/08/26 17:10:32  rjk
    Removed L<> from around link in pod - pod2html doesn't handle L<> properly

    Revision 1.2  1999/06/22 02:20:13  rjk
    added /o to regex which verifies letters used
      (regex is constant in this implementation of words)
    added link to ENABLE word list in POD
    added $VERSION

    Revision 1.1  1999/06/14 02:28:41  rjk
    Initial revision

AUTHOR

This implementation of words in Perl was written by Ronald J Kimball, rjk-perl@tamias.net.

COPYRIGHT and LICENSE

This program is copyright 1999 by Ronald J Kimball.

This program is free and open software. You may use, modify, or distribute this program (and any modified variants) in any way you wish, provided you do not restrict others from doing the same.