Home | History | Annotate | Line # | Download | only in gzip
zgrep revision 1.4.4.1
      1      1.1  wiz #!/bin/sh
      2      1.2  wiz #
      3  1.4.4.1  jdc # $NetBSD: zgrep,v 1.4.4.1 2008/05/11 07:17:22 jdc Exp $
      4      1.2  wiz #
      5      1.1  wiz # Copyright (c) 2003 Thomas Klausner.
      6      1.1  wiz #
      7      1.1  wiz # Redistribution and use in source and binary forms, with or without
      8      1.1  wiz # modification, are permitted provided that the following conditions
      9      1.1  wiz # are met:
     10      1.1  wiz # 1. Redistributions of source code must retain the above copyright
     11      1.1  wiz #    notice, this list of conditions and the following disclaimer.
     12      1.1  wiz # 2. Redistributions in binary form must reproduce the above copyright
     13      1.1  wiz #    notice, this list of conditions and the following disclaimer in the
     14      1.1  wiz #    documentation and/or other materials provided with the distribution.
     15      1.1  wiz # 3. The name of the author may not be used to endorse or promote products
     16      1.1  wiz #    derived from this software without specific prior written permission.
     17      1.1  wiz #
     18      1.1  wiz # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19      1.1  wiz # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20      1.1  wiz # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21      1.1  wiz # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22      1.1  wiz # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23      1.1  wiz # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24      1.1  wiz # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25      1.1  wiz # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26      1.1  wiz # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27      1.1  wiz # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28      1.1  wiz 
     29      1.1  wiz grep=/usr/bin/grep
     30      1.1  wiz zcat=/usr/bin/zcat
     31      1.1  wiz 
     32      1.1  wiz endofopts=0
     33      1.1  wiz pattern_found=0
     34      1.1  wiz grep_args=""
     35  1.4.4.1  jdc silent=0
     36      1.1  wiz 
     37      1.1  wiz prg=$0
     38      1.1  wiz 
     39      1.1  wiz # handle being called 'zegrep' or 'zfgrep'
     40      1.1  wiz case ${prg} in
     41      1.1  wiz     *zegrep)
     42      1.1  wiz 	grep_args="-E";;
     43      1.1  wiz     *zfgrep)
     44      1.1  wiz 	grep_args="-F";;
     45      1.1  wiz esac
     46      1.1  wiz 
     47      1.1  wiz # skip all options and pass them on to grep taking care of options
     48      1.1  wiz # with arguments, and if -e was supplied
     49      1.1  wiz 
     50      1.1  wiz while [ $# -gt 0 -a ${endofopts} -eq 0 ]
     51      1.1  wiz do
     52      1.1  wiz     case $1 in
     53      1.1  wiz     # from GNU grep-2.5.1 -- keep in sync!
     54      1.1  wiz 	-[ABCDXdefm])
     55      1.1  wiz 	    case $1 in
     56      1.1  wiz 		-e)
     57      1.1  wiz 		    pattern_found=1;;
     58      1.1  wiz 		*)
     59      1.1  wiz 		    ;;
     60      1.1  wiz 	    esac
     61      1.1  wiz 
     62      1.1  wiz 	    if [ $# -lt 2 ]
     63      1.1  wiz 		then
     64      1.1  wiz 		echo "${prg}: missing argument for ${saved_arg} flag" >&2
     65      1.1  wiz 		exit 1
     66      1.1  wiz 	    fi
     67      1.1  wiz 	    grep_args="${grep_args} $1 $2"
     68      1.1  wiz 	    shift 2
     69      1.1  wiz 	    ;;
     70      1.1  wiz 	--)
     71      1.1  wiz 	    grep_args="${grep_args} $1"
     72      1.1  wiz 	    shift
     73      1.1  wiz 	    endofopts=1
     74      1.1  wiz 	    ;;
     75      1.1  wiz 	-)
     76      1.1  wiz 	    endofopts=1
     77      1.1  wiz 	    ;;
     78  1.4.4.1  jdc 	-h)
     79  1.4.4.1  jdc 	    silent=1
     80  1.4.4.1  jdc 	    shift
     81  1.4.4.1  jdc 	    ;;
     82      1.1  wiz 	-*)
     83      1.1  wiz 	    grep_args="${grep_args} $1"
     84      1.1  wiz 	    shift
     85      1.1  wiz 	    ;;
     86      1.1  wiz 	*)
     87      1.1  wiz 	    # pattern to grep for
     88      1.1  wiz 	    endofopts=1
     89      1.1  wiz 	    ;;
     90      1.1  wiz     esac
     91      1.1  wiz done
     92      1.1  wiz 
     93      1.1  wiz # if no -e option was found, take next argument as grep-pattern
     94      1.1  wiz if [ ${pattern_found} -lt 1 ]
     95      1.1  wiz then
     96      1.1  wiz     if [ $# -lt 1 ]
     97      1.1  wiz     then
     98      1.1  wiz 	echo "${prg}: missing pattern" >&2
     99      1.1  wiz 	exit 1
    100      1.1  wiz     fi
    101      1.1  wiz     pattern=$1
    102      1.1  wiz     shift
    103      1.1  wiz fi
    104      1.1  wiz 
    105      1.1  wiz # call grep ...
    106      1.1  wiz if [ $# -lt 1 ]
    107      1.1  wiz then
    108      1.1  wiz     # ... on stdin
    109      1.4  mrg     ${zcat} -fq - | ${grep} ${grep_args} "${pattern}" -
    110      1.1  wiz else
    111      1.1  wiz     # ... on all files given on the command line
    112  1.4.4.1  jdc     if [ ${silent} -lt 1 ]; then
    113  1.4.4.1  jdc 	grep_args="-H ${grep_args}"
    114  1.4.4.1  jdc     fi
    115      1.1  wiz     while [ $# -gt 0 ]
    116      1.1  wiz     do
    117  1.4.4.1  jdc 	${zcat} -fq -- "$1" | ${grep} --label="${1}" "${pattern}" ${grep_args} -
    118      1.1  wiz 	shift
    119      1.1  wiz     done
    120      1.1  wiz fi
    121      1.1  wiz 
    122      1.1  wiz exit 0
    123