in reply to How do I Gzip a file in perl script

You can use Compress::Zlib to do a simple gzip (de)compression of a stream, or if you need a compressed archive (multiple files) you can use Archive::Tar.

If you need an archive of compressed files in the ZIP format, you can use my Archive::Zip module.

  • Comment on Re: How do I Gzip a file in perl script