zgrep: fix parsing of -Eh options
[gzip.git] / zless.in
blobdbdcfbe156942685d47c85e28cb3b1b24f4b8b95
1 #!/bin/sh
3 # Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 bindir=@bindir@
20 case $1 in
21 --__bindir) bindir=${2?}; shift; shift;;
22 esac
23 PATH=$bindir:$PATH; export PATH
25 version="zless (gzip) @VERSION@
26 Copyright (C) 2007, 2009-2010 Free Software Foundation, Inc.
27 This is free software. You may redistribute copies of it under the terms of
28 the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
29 There is NO WARRANTY, to the extent permitted by law.
31 Written by Paul Eggert."
33 usage="Usage: $0 [OPTION]... [FILE]...
34 Like 'less', but operate on the uncompressed contents of any compressed FILEs.
36 Options are the same as for 'less'.
38 Report bugs to <bug-gzip@gnu.org>."
40 case $1 in
41 --help) exec echo "$usage";;
42 --version) exec echo "$version";;
43 esac
45 if test "${LESSMETACHARS+set}" != set; then
46 # Work around a bug in less 394 and earlier;
47 # it mishandles the metacharacters '$%=~'.
48 space=' '
49 tab=' '
50 newline='
52 LESSMETACHARS="$space$tab$newline'"';*?"()<>[|&^`#\$%=~'
53 export LESSMETACHARS
56 LESSOPEN="|gzip -cdfq -- %s"; export LESSOPEN
57 exec less "$@"