#! /bin/sh . ${srcdir:=.}/t.frame set -e cat >${TMPDIR}/input <<_EOF From whoever@wherever.com Subject: **not interesting** Content-type: multipart/mixed; boundary="----------=_1036153697-28558-453" ------------=_1036153697-28558-453 Content-Type: text/html ABC; DEFG HIJKL ABC;—DEFG Get Anyone—Else RXY _EOF cat >${TMPDIR}/reference <<_EOF ABC DEFG HIJKL ABC DEFG Get Anyone Else RXY _EOF $BOGOLEXER -p -C <${TMPDIR}/input | grep -v ":" > ${TMPDIR}/output cmp ${TMPDIR}/reference ${TMPDIR}/output \ || diff ${TMPDIR}/reference ${TMPDIR}/output