1 1.1 wiz #!/bin/sh 2 1.2 wiz # 3 1.9 nakayama # $NetBSD: zgrep,v 1.9 2015/07/06 12:05:40 nakayama 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 # 16 1.1 wiz # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17 1.1 wiz # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 1.1 wiz # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19 1.1 wiz # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20 1.1 wiz # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 21 1.1 wiz # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 1.1 wiz # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 1.1 wiz # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 1.1 wiz # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 1.1 wiz # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 1.1 wiz 27 1.1 wiz grep=/usr/bin/grep 28 1.1 wiz zcat=/usr/bin/zcat 29 1.1 wiz 30 1.1 wiz endofopts=0 31 1.1 wiz pattern_found=0 32 1.1 wiz grep_args="" 33 1.5 yamt hyphen=0 34 1.6 nakayama silent=0 35 1.1 wiz 36 1.8 pgoyette prg=$(basename $0) 37 1.1 wiz 38 1.1 wiz # handle being called 'zegrep' or 'zfgrep' 39 1.1 wiz case ${prg} in 40 1.1 wiz *zegrep) 41 1.1 wiz grep_args="-E";; 42 1.1 wiz *zfgrep) 43 1.1 wiz grep_args="-F";; 44 1.1 wiz esac 45 1.1 wiz 46 1.1 wiz # skip all options and pass them on to grep taking care of options 47 1.1 wiz # with arguments, and if -e was supplied 48 1.1 wiz 49 1.1 wiz while [ $# -gt 0 -a ${endofopts} -eq 0 ] 50 1.1 wiz do 51 1.1 wiz case $1 in 52 1.1 wiz # from GNU grep-2.5.1 -- keep in sync! 53 1.1 wiz -[ABCDXdefm]) 54 1.5 yamt if [ $# -lt 2 ] 55 1.5 yamt then 56 1.5 yamt echo "${prg}: missing argument for $1 flag" >&2 57 1.5 yamt exit 1 58 1.5 yamt fi 59 1.1 wiz case $1 in 60 1.1 wiz -e) 61 1.5 yamt pattern="$2" 62 1.5 yamt pattern_found=1 63 1.5 yamt shift 2 64 1.5 yamt break 65 1.5 yamt ;; 66 1.1 wiz *) 67 1.1 wiz ;; 68 1.1 wiz esac 69 1.1 wiz grep_args="${grep_args} $1 $2" 70 1.1 wiz shift 2 71 1.1 wiz ;; 72 1.1 wiz --) 73 1.1 wiz shift 74 1.1 wiz endofopts=1 75 1.1 wiz ;; 76 1.1 wiz -) 77 1.5 yamt hyphen=1 78 1.5 yamt shift 79 1.1 wiz ;; 80 1.6 nakayama -h) 81 1.6 nakayama silent=1 82 1.6 nakayama shift 83 1.6 nakayama ;; 84 1.1 wiz -*) 85 1.1 wiz grep_args="${grep_args} $1" 86 1.1 wiz shift 87 1.1 wiz ;; 88 1.1 wiz *) 89 1.1 wiz # pattern to grep for 90 1.1 wiz endofopts=1 91 1.1 wiz ;; 92 1.1 wiz esac 93 1.1 wiz done 94 1.1 wiz 95 1.1 wiz # if no -e option was found, take next argument as grep-pattern 96 1.1 wiz if [ ${pattern_found} -lt 1 ] 97 1.1 wiz then 98 1.5 yamt if [ $# -ge 1 ]; then 99 1.5 yamt pattern="$1" 100 1.5 yamt shift 101 1.5 yamt elif [ ${hyphen} -gt 0 ]; then 102 1.5 yamt pattern="-" 103 1.5 yamt else 104 1.1 wiz echo "${prg}: missing pattern" >&2 105 1.1 wiz exit 1 106 1.1 wiz fi 107 1.1 wiz fi 108 1.1 wiz 109 1.1 wiz # call grep ... 110 1.1 wiz if [ $# -lt 1 ] 111 1.1 wiz then 112 1.1 wiz # ... on stdin 113 1.5 yamt ${zcat} -fq - | ${grep} ${grep_args} -- "${pattern}" - 114 1.1 wiz else 115 1.1 wiz # ... on all files given on the command line 116 1.9 nakayama if [ ${silent} -lt 1 -a $# -gt 1 ]; then 117 1.6 nakayama grep_args="-H ${grep_args}" 118 1.6 nakayama fi 119 1.1 wiz while [ $# -gt 0 ] 120 1.1 wiz do 121 1.6 nakayama ${zcat} -fq -- "$1" | ${grep} --label="${1}" ${grep_args} -- "${pattern}" - 122 1.1 wiz shift 123 1.1 wiz done 124 1.1 wiz fi 125 1.1 wiz 126 1.1 wiz exit 0 127