Module Name: src
Committed By: pettai
Date: Fri Dec 6 13:33:15 UTC 2013
Modified Files:
src/usr.bin/gzip: zmore
Log Message:
fix == compatibility problem
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.bin/gzip/zmore
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/gzip/zmore
diff -u src/usr.bin/gzip/zmore:1.4 src/usr.bin/gzip/zmore:1.5
--- src/usr.bin/gzip/zmore:1.4 Tue Nov 12 21:58:37 2013
+++ src/usr.bin/gzip/zmore Fri Dec 6 13:33:15 2013
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $NetBSD: zmore,v 1.4 2013/11/12 21:58:37 pettai Exp $
+# $NetBSD: zmore,v 1.5 2013/12/06 13:33:15 pettai Exp $
#
# $OpenBSD: zmore,v 1.6 2008/08/20 09:22:02 mpf Exp $
#
@@ -41,7 +41,7 @@ while test $# -ne 0; do
esac
done
-if [ `basename $0` == "zless" ] ; then
+if [ `basename $0` = "zless" ] ; then
pager=${PAGER-less}
else
pager=${PAGER-more}
@@ -49,13 +49,13 @@ fi
# No files means read from stdin
if [ $# -eq 0 ]; then
- gzip -cdfq 2>&1 | ${PAGER-more} $flags
+ gzip -cdfq 2>&1 | $pager $flags
exit 0
fi
oterm=`stty -g 2>/dev/null`
while test $# -ne 0; do
- gzip -cdfq "$1" 2>&1 | ${PAGER-more} $flags
+ gzip -cdfq "$1" 2>&1 | $pager $flags
prev="$1"
shift
if tty -s && test -n "$oterm" -a $# -gt 0; then