procmail
[Top] [All Lists]

Re: Stripping HTML: Another Question

1997-10-10 01:34:06
Michael Stone <mstone(_at_)itri(_dot_)loyola(_dot_)edu> wrote:

 sed will do the same thing with fewer resources.
      :0fb
      | sed 's/<[^>]*>//g' | sed 's/--====URL-MINDER====/OH\!/g'

This can be done without a SHELL too:

        SHELLMETAS
        :0fbw
        | sed 's/<[^>]*>//g;s/--====URL-MINDER====/OH\!/g'