Dictionary maker - List of scripts
Each one has a scriptol, a php and a c++ source plus a binary for Windows


Programs dealing with single lists of words
-------------------------------------------

WORDIT      Make a sorted list of all the words from a text file.
ADDIT       Add a word or a file of words to a list.
            Doubloons are removed, the final list is sorted out.


Programs dealing with dictionaries of words and number of occurences
--------------------------------------------------------------------

WORDNUM     Make a dictionary of the words from a text file,
            each line holding a couple as    "keyword : value"
            - keywords are words,
            - values are the number of occurences for the word.
            The dict is sorted by walues, in ascending order.
WORDADD     Add a word or a file of words to a dict.
            Number or occurences is incremented for words already in dict,
            otherwise the word is added to the dict.
DICT2ARR    Convert a dictionary to a single sorted list of words.
DSORT       Sort a dictionary by number of occurences.

Programs dealing with both dictionaries or single lists of words
----------------------------------------------------------------

NODOUBLE    Remove doubloons from a list.
COUNTER     Count words in a list.
REMOVER     Remove a word from a list.
SEARCHER    Search for a word in a list.

Other programs
--------------

WORDS       Count words in a text file.
STRTOOLS    Module of the Scriptol's library.
