
    SPACEIT  -  expand tabs to spaces

                by John Simmons, April 95

        This filter program takes an input file of plain ASCII text and
    converts tabs into spaces based on tab stops every n columns.  The
    tab width n defaults to 8 but can be set on the command line to any
    value between 2 and 32.

    Examples:    SPACEIT 6 < TEXTFILE.TXT > TEXTFILE.DOC
          or:    TYPE TEXTFILE.TXT | SPACEIT 6 > TEXTFILE.DOC

        These commands take an input file TEXTFILE.TXT and produce an
    output file TEXTFILE.DOC with tabs expanded to spaces based on
    six character columns.

