2 # sh is buggy on RS/6000 AIX 3.2. Replace above line with #!/bin/ksh
4 # Copyright (C) 1998, 2002, 2006-2007, 2009-2015 Free Software Foundation,
6 # Copyright (C) 1993 Jean-loup Gailly
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with this program; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 --__bindir) bindir
=${2?}; shift; shift;;
30 prog
=cmp; cmp='${CMP-cmp}' ;;
31 *) prog
=diff; cmp='${DIFF-diff}';;
34 version
="z$prog (gzip) @VERSION@
35 Copyright (C) 2009, 2011-2015 Free Software Foundation, Inc.
36 This is free software. You may redistribute copies of it under the terms of
37 the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
38 There is NO WARRANTY, to the extent permitted by law.
40 Written by Jean-loup Gailly."
42 usage
="Usage: $0 [OPTION]... FILE1 [FILE2]
43 Compare FILE1 to FILE2, using their uncompressed contents if they are
44 compressed. If FILE2 is omitted, compare FILE1 to the uncompressed
45 contents of FILE1.gz. Do comparisons like '$prog' does.
47 OPTIONs are the same as for '$prog'.
49 Report bugs to <bug-gzip@gnu.org>."
51 # sed script to escape all ' for the shell, and then (to handle trailing
52 # newlines correctly) turn trailing X on last line into '.
54 s/'\''/'\''\\'\'''\''/g
60 --h*) printf '%s\n' "$usage" ||
exit 2; exit;;
61 --v*) echo "$version" ||
exit 2; exit;;
63 -*\'*) cmp="$cmp '"`printf '%sX\n' "$1" | sed "$escape"`;;
64 -?
*) cmp="$cmp '$1'";;
73 test "X$file" = X- ||
<"$file" ||
exit 2
79 if test $# -eq 1; then
81 *[-.
]gz
* |
*[-.
][zZ
] |
*.t
[ga
]z
)
82 FILE
=`expr "X$1" : 'X\(.*\)[-.][zZtga]*$'`
85 (gzip -cd -- "$1" 4>&-; echo $?
>&4) 3>&- |
eval "$cmp" - '"$FILE"' >&3
88 echo >&2 "$0: $1: unknown compressed file extension"
91 elif test $# -eq 2; then
93 *[-.
]gz
* |
*[-.
][zZ
] |
*.t
[ga
]z |
-)
95 *[-.
]gz
* |
*[-.
][zZ
] |
*.t
[ga
]z |
-)
96 if test "$1$2" = --; then
99 (gzip -cdfq - 4>&-; echo $?
>&4) 3>&- |
103 # Reject Solaris 8's buggy /bin/bash 2.03.
105 (echo X |
eval "$cmp" /dev
/fd
/5 - >/dev
/null
2>&1) \
110 (gzip -cdfq -- "$1" 4>&-; echo $?
>&4) 3>&- |
111 ( (gzip -cdfq -- "$2" 4>&-; echo $?
>&4) 3>&- 5<&- </dev
/null |
112 eval "$cmp" /dev
/fd
/5 - >&3) 5<&0
116 *[1-9]*) gzip_status
=1;;
121 F
=`expr "/$2" : '.*/\(.*\)[-.][zZtga]*$'` || F
=$prog
124 test -n "$tmp" && rm -f "$tmp"
126 ' HUP INT PIPE TERM
0
127 if type mktemp
>/dev
/null
2>&1; then
128 tmp
=`mktemp -t -- "$F.XXXXXX"` ||
exit 2
131 tmp
=${TMPDIR-/tmp}/$F.$$
133 gzip -cdfq -- "$2" > "$tmp" ||
exit 2
136 (gzip -cdfq -- "$1" 4>&-; echo $?
>&4) 3>&- |
137 eval "$cmp" - '"$tmp"' >&3
140 rm -f "$tmp" || gzip_status
=$?
141 trap - HUP INT PIPE TERM
0
147 (gzip -cdfq -- "$1" 4>&-; echo $?
>&4) 3>&- |
148 eval "$cmp" - '"$2"' >&3
152 *[-.
]gz
* |
*[-.
][zZ
] |
*.t
[ga
]z |
-)
155 (gzip -cdfq -- "$2" 4>&-; echo $?
>&4) 3>&- |
156 eval "$cmp" '"$1"' - >&3
158 *) eval "$cmp" '"$1"' '"$2"';;
162 echo >&2 "$0: invalid number of operands; try \`$0 --help' for help"
167 test "$gzip_status" -eq 0 ||
exit 2