| 1 | #!/bin/sh
 | 
|---|
| 2 | 
 | 
|---|
| 3 | # Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation
 | 
|---|
| 4 | 
 | 
|---|
| 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 2 of the License, or
 | 
|---|
| 8 | # (at your option) any later version.
 | 
|---|
| 9 | 
 | 
|---|
| 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.
 | 
|---|
| 14 | 
 | 
|---|
| 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.
 | 
|---|
| 18 | 
 | 
|---|
| 19 | PATH="${GZIP_BINDIR-'/usr/bin'}:$PATH"; export PATH
 | 
|---|
| 20 | 
 | 
|---|
| 21 | version="zless (gzip) 1.3.12
 | 
|---|
| 22 | Copyright (C) 2007 Free Software Foundation, Inc.
 | 
|---|
| 23 | This is free software.  You may redistribute copies of it under the terms of
 | 
|---|
| 24 | the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
 | 
|---|
| 25 | There is NO WARRANTY, to the extent permitted by law.
 | 
|---|
| 26 | 
 | 
|---|
| 27 | Written by Paul Eggert."
 | 
|---|
| 28 | 
 | 
|---|
| 29 | usage="Usage: $0 [OPTION]... [FILE]...
 | 
|---|
| 30 | Like 'less', but operate on the uncompressed contents of any compressed FILEs.
 | 
|---|
| 31 | 
 | 
|---|
| 32 | Options are the same as for 'less'.
 | 
|---|
| 33 | 
 | 
|---|
| 34 | Report bugs to <bug-gzip@gnu.org>."
 | 
|---|
| 35 | 
 | 
|---|
| 36 | case $1 in
 | 
|---|
| 37 | --help)    exec echo "$usage";;
 | 
|---|
| 38 | --version) exec echo "$version";;
 | 
|---|
| 39 | esac
 | 
|---|
| 40 | 
 | 
|---|
| 41 | if test "${LESSMETACHARS+set}" != set; then
 | 
|---|
| 42 |   # Work around a bug in less 394 and earlier;
 | 
|---|
| 43 |   # it mishandles the metacharacters '$%=~'.
 | 
|---|
| 44 |   space=' '
 | 
|---|
| 45 |   tab=' '
 | 
|---|
| 46 |   newline='
 | 
|---|
| 47 | '
 | 
|---|
| 48 |   LESSMETACHARS="$space$tab$newline'"';*?"()<>[|&^`#\$%=~'
 | 
|---|
| 49 |   export LESSMETACHARS
 | 
|---|
| 50 | fi
 | 
|---|
| 51 | 
 | 
|---|
| 52 | LESSOPEN="|gzip -cdfq -- %s"; export LESSOPEN
 | 
|---|
| 53 | exec less "$@"
 | 
|---|