#!/bin/sh # # HTML.sum - Uses either the lax or the SGML summarizer to summarize HTML # # Choose one of the following summarizers. # # To use SGML summarizer, uncomment this. # # exec SGML.sum HTML $* # # To use the less-strict HTML summarizer, uncomment the line below. # exec HTML-lax.sum --body-text $* # # To use the Perl HTML summarizer uncomment the following line. # You have to have Perl 5 and the HTMLParse module. # # exec HTML-sum.pl $*