From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) Description of problem: the collection of file listing commands zcat, zless and zmore have inconsistent behaviour. if you have a gzipped file fred.gz, both zcat and zless allow you to omit the suffix: $ zcat fred $ zless fred however, zmore *requires* the suffix, which is clearly non-intuitive. i haven't checked any of the other utilities (zgrep, etc.), but it might be nice if they all worked consistently. Version-Release number of selected component (if applicable): gzip-1.3.3-10 How reproducible: Always Steps to Reproduce: 1. gzip fred (to generate fred.gz) 2. zcat fred # works 3. zmore fred # fails Additional info:
If you want such a zmore, then replace zmore with this script: #!/bin/sh /bin/zcat "$@" | /bin/more
Thank you for your notice. The problem was fixed. Ivana Varekova
Fixed in 1.3.3-15