#!/bin/sh
# just filter out the string
#
# $1 is file to filter
#
# string to compare:
# (don't put special characters in it since those could cause quoting problems)
IGNORE=Z4D

# note above is hard-coded.
# probably leave it that way or make environment variable
# (but not command-line option; o.w., jrv would need to deal with it)

grep -v $IGNORE $1
