#!/bin/bash
##########################################################################
# $Id: onlycontains,v 1.4 2002/03/29 15:29:30 kirk Exp $
##########################################################################
# $Log: onlycontains,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:03  kirk
# Getting ready for a first distribution
#
# Revision 1.2  1998/02/22 23:28:26  kirk
# Commented and rearranged some things
#
# Revision 1.1  1998/02/22 23:13:33  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 does a case-insensitive egrep ;)

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

