mirror of the now-defunct rocklinux.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- gzip-1.3.3/zmore.in.addsuffix 2004-12-13 09:55:48.000000000 +0100
|
|
+++ gzip-1.3.3/zmore.in 2004-12-13 09:58:24.641766288 +0100
|
|
@@ -50,7 +50,7 @@
|
|
FIRST=1
|
|
for FILE
|
|
do
|
|
- < "$FILE" || continue
|
|
+ if test -e $FILE || test -e $FILE.gz; then
|
|
if test $FIRST -eq 0; then
|
|
echo $n1 "--More--(Next file: $FILE)$n2"
|
|
stty $cb -echo 2>/dev/null
|
|
@@ -68,5 +68,7 @@
|
|
if test -t; then
|
|
FIRST=0
|
|
fi
|
|
+ else < $FILE
|
|
+ fi
|
|
done
|
|
fi
|