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
327 B

  1. --- gzip-1.3.1/zgrep.in
  2. +++ gzip-1.3.1/zgrep.in
  3. @@ -92,6 +92,7 @@
  4. fi
  5. res=0
  6. +trap break SIGPIPE
  7. for i do
  8. gzip -cdfq "$i" |
  9. if test $files_with_matches -eq 1; then
  10. @@ -110,5 +111,8 @@
  11. fi
  12. r=$?
  13. test $res -lt $r && res=$r
  14. + # SIGPIPE + 128
  15. + test "$r" -eq 141 && exit $res
  16. done
  17. +trap - SIGPIPE
  18. exit $res