#!/bin/bash
##########################################################################
# $Id: remove,v 1.4 2002/03/29 15:29:30 kirk Exp $
##########################################################################
# $Log: remove,v $
# Revision 1.4  2002/03/29 15:29:30  kirk
# Added quotes around $* arg so you can actually have spaces in your regexes
#
# Revision 1.3  1998/02/23 01:17:04  kirk
# Getting ready for a first distribution
#
# Revision 1.2  1998/02/22 23:28:29  kirk
# Commented and rearranged some things
#
# Revision 1.1  1998/02/22 23:13:34  kirk
# Added 2 very simple filters ;)
#
##########################################################################

########################################################
# This was written and is maintained by:
#    Kirk Bauer <kirk@kaybee.org>
#
# Please send all comments, suggestions, bug reports,
#    etc, to kirk@kaybee.org.
#
########################################################

# Just a case-insensitive, inverse egrep

cat | /bin/egrep -vi "$*"

