			SKIP_DOC.TXT
			============

    SKIPLINE.COM  -- original file from PC Magazine, skips selected range of
	lines.
    OUTLINES.COM  -- modified, condition for printing reversed, PRINTS selected
	range of lines.  Best for Macintosh-format text files.
    OUTLINEU.COM  -- modified, condition for printing reversed, looks for
	line-feed instead of carriage-returns for UNIX-format files, PRINTS
	selected range of lines.  Best for DOS- or UNIX-format text files.
    SKIPPAGE.COM  -- modified, form-feeds counted instead of carriage-returns,
	skips selected range of PAGES.
    OUTPAGES.COM  -- modified, form-feeds counted instead of carriage-returns,
	and condition for printing reversed, PRINTS selected range of PAGES.
    ODDPAGES.COM  -- modified, formfeeds cause flag to invert, only flag
	tested, PRINTS ODD pages only.
    EVENPAGE.COM  -- modified, formfeeds cause flag to invert, only flag
	tested, PRINTS EVEN pages only.

Syntax:  ( first defaults to 1,  last defaults to 65535 )

    SKIPLINE   [ first ]  ,  [ last ]   [ <infile ]   [ >[>]outfile ]
    OUTLINES   [ first ]  ,  [ last ]   [ <infile ]   [ >[>]outfile ]
    OUTLINEU   [ first ]  ,  [ last ]   [ <infile ]   [ >[>]outfile ]
    SKIPPAGE   [ first ]  ,  [ last ]   [ <infile ]   [ >[>]outfile ]
    OUTPAGES   [ first ]  ,  [ last ]   [ <infile ]   [ >[>]outfile ]
    ODDPAGES   [ <infile ]   [ >[>]outfile ]
    EVENPAGE   [ <infile ]   [ >[>]outfile ]

Examples:

    SKIPLINE  17, 54  <LETTER   >HEADFOOT.LET
	Skip body of letter, lines 17 to 54, and print the rest to file.
	You could also use
    OUTLINES    , 16  <LETTER   >HEADFOOT.LET
    OUTLINES  55,     <LETTER  >>HEADFOOT.LET

    OUTLINES  25, 47  <LETTER   >MAINPARA.LET
	Print main paragraph, lines 25 to 47, to another file.

    SKIPPAGE  7, 83  <MANUAL  >WHEREIS.IT
	Skip pages 7 to  83 of manual, keeping only the table of contents
	and the index.  You could also use
    OUTPAGES   , 6   <MANUAL  >WHEREIS.IT
    OUTPAGES 84,     <MANUAL >>WHEREIS.IT

    OUTPAGES  74, 74  <MANUAL  >LPT1
	Print extra copy of chart on seventy-fourth page of manual.

    DIR | SKIPLINE  ,3  >LPT1
	Print directory of disk, skipping the first three lines that contain
	no filenames.

    SKIPPAGE  ,1 <REPORT | OUTPAGES  ,   >REPORT
	Strip a leading form-feed from a report.  OUTPAGES does nothing to the
	report.  It just allows a pipe to store the processed report so it can
	be copied over the original after processing is done.
		
    ODDPAGES  <MANUAL.TXT >LPT1
	Print odd pages on one side of the paper, turn the paper over, and
	then use
    EVENPAGE  <MANUAL.TXT >LPT1
	to print the even pages on the other side of the paper.  After
	separating and punching the paper, you have a manual with two pages
	per sheet, odd on one side and following even page on the other.
