📄 announce
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -