X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=zmore.in;h=91f1fc72366272098cef7057f487527b0f7677a7;hb=ad96056bdcf62abd585cdb53768fbabdde75d1b5;hp=de6d3db129e6eea8a4242222227d9b99f2fee769;hpb=302189d124ed5849c2589ea92e912eb24fdc4ab3;p=debian%2Fgzip diff --git a/zmore.in b/zmore.in index de6d3db..91f1fc7 100755 --- a/zmore.in +++ b/zmore.in @@ -1,7 +1,7 @@ : #!/bin/sh -# Copyright (C) 2001 Free Software Foundation +# Copyright (C) 2001, 2002 Free Software Foundation # Copyright (C) 1992, 1993 Jean-loup Gailly # This program is free software; you can redistribute it and/or modify @@ -33,7 +33,7 @@ else # 'stty min 1' resets eof to ^a on both SunOS and SysV! cb='min 1 -icanon'; ncb='icanon eof ^d' fi -if test $? -eq 0 -a -n "$oldtty"; then +if test $? -eq 0 && test -n "$oldtty"; then trap 'stty $oldtty 2>/dev/null; exit' 0 2 3 5 10 13 15 else trap 'stty $ncb echo 2>/dev/null; exit' 0 2 3 5 10 13 15 @@ -41,7 +41,7 @@ fi if test $# = 0; then if test -t 0; then - echo usage: zmore files... + echo usage: ${ZMORE_PROGRAM_NAME-zmore} files... else gzip -cdfq | eval ${PAGER-more} fi @@ -56,15 +56,15 @@ else ANS=`dd bs=1 count=1 2>/dev/null` stty $ncb echo 2>/dev/null echo " " - if test "$ANS" = 'e' -o "$ANS" = 'q'; then - exit - fi + case "$ANS" in + [eq]) exit;; + esac fi if test "$ANS" != 's'; then echo "------> $FILE <------" gzip -cdfq "$FILE" | eval ${PAGER-more} fi - if test -t; then + if test -t 1; then FIRST=0 fi done