Merge from vendor branch OPENSSH:
[dragonfly.git] / gnu / usr.bin / gzip / zgrep.getopt
1 #!/bin/sh
2 #
3 # Copyright (c) April 1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL [your name] OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # zgrep - search possibly compressed files for a regular expression
28 #
29 # $FreeBSD: src/gnu/usr.bin/gzip/zgrep.getopt,v 1.7 1999/08/27 23:35:55 peter Exp $
30 # $DragonFly: src/gnu/usr.bin/gzip/Attic/zgrep.getopt,v 1.2 2003/06/17 04:25:46 dillon Exp $
31
32
33 PATH=/bin:/usr/bin:$PATH; export PATH
34
35 # grep variant
36 case "$0" in
37         *egrep) grep=${EGREP-egrep}     ;;
38         *fgrep) grep=${FGREP-fgrep}     ;;
39         *)      grep=${GREP-grep}       ;;
40 esac
41
42 gzip=gzip gzipopt="-cdfq" pattern= grepopt= files= line= header=
43
44 # check options
45 while getopts "0123456789A:B:CEFGVX:bce:f:hiLlnqsvwxy" option
46 do
47         case "$option" in
48                 e|f)    pattern="-$option $OPTARG";;    # -f file
49                 l|L)    line=-$option;   grepopt="$grepopt -$option";;
50                 h|q)    header=-h; grepopt="$grepopt -$option";;
51                 # rest
52                 [0-9CEFGVbchiLlnqsvwxy]) grepopt="$grepopt -$option";; 
53                 [ABXef]) grepopt="$grepopt -$option $OPTARG";;
54         esac
55 done
56 shift $(($OPTIND - 1))
57
58 # check pattern
59 case X"$pattern" in
60         X) case $# in 
61                 0) echo "usage: $0 [grep_options] pattern [files]"; exit 1;; 
62                 *) pattern=$1; shift;;
63            esac
64 esac
65
66
67 files="$@"      
68 # no shell loop neccessary for option -q or -h 
69 # and a single file or reading from stdin
70 case "$header"X"$#" in 
71         -h*|-q*|X0|X1)  $gzip $gzipopt -- $files | $grep $grepopt -- "$pattern"
72                         exit $?;; 
73 esac
74
75 for f in $files
76 do
77         case "$line" in
78                 -l) if $gzip $gzipopt -- $f | 
79                             $grep $grepopt -- "$pattern" >/dev/null
80                     then 
81                         echo $f
82                     fi
83                     ;;
84                 -L) if $gzip $gzipopt -- $f | 
85                         $grep $grepopt -- "$pattern" >/dev/null; then :
86                     else 
87                         echo $f
88                     fi
89                     ;;
90
91                 *)  $gzip $gzipopt -- $f | $grep $grepopt -- "$pattern" | 
92                         sed "s%^%${f}:%"
93                     ;;
94         esac
95 done