announce

来自「perl中编译使用zlib」· 代码 · 共 54 行

TXT
54
字号
                          Compress::Zlib - 1.00Announcing release 1.00 of Compress::Zlib (formerly known as Zipin the module list).What is Compress::Zlib?=======================Compress::Zlib is a Perl external module which provides an interface tothe info-zip zlib compression library. zlib is a general purposecompression library.Some of the features provided by Compress::Zlib include:   * in-memory compression and decompression   * read and write gzip (.gz) files directly.By way of an example here is a small script which reads gzipped filesand writes the unzipped output to standard output.    use Compress::Zlib ;    die "Usage: gzcat file...\n"        unless @ARGV ;        foreach $file (@ARGV) {        $gz = gzopen($file, "rb")              or die "Cannot open $file: $gzerrno\n" ;            print $buffer while $gz->gzread($buffer) > 0 ;            die "Error reading from $file: $gzerrno\n" if $gzerrno ;                $gz->gzclose() ;    }    Availability============The latest copy of Compress::ZLib is available on CPAN    modules/by-module/Compress/Compress-Zlib-*and zlib is available at    http://www.cdrom.com/pub/infozip/zlib/    ftp://ftp.uu.net/pub/archiving/zip/zlib*    ftp://swrinde.nde.swri.edu/pub/png/src/zlib*Paul Marquess

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?