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.

19 lines
442 B

  1. --- gzip-1.3.3/zmore.in.addsuffix 2004-12-13 09:55:48.000000000 +0100
  2. +++ gzip-1.3.3/zmore.in 2004-12-13 09:58:24.641766288 +0100
  3. @@ -50,7 +50,7 @@
  4. FIRST=1
  5. for FILE
  6. do
  7. - < "$FILE" || continue
  8. + if test -e $FILE || test -e $FILE.gz; then
  9. if test $FIRST -eq 0; then
  10. echo $n1 "--More--(Next file: $FILE)$n2"
  11. stty $cb -echo 2>/dev/null
  12. @@ -68,5 +68,7 @@
  13. if test -t; then
  14. FIRST=0
  15. fi
  16. + else < $FILE
  17. + fi
  18. done
  19. fi