#!/bin/csh -f

# Just strip away HTML from files (i.e., anything enclosed in angle
# brackets).

cat $* | sed 's+<[^>]*>++g'
