How to search through archived files with Perl

compression, file-io, perl, search

Solution

There are several modules on CPAN for working with various archive formats (zip, tar, etc.), the one you're probably after is Archive::Zip.

Problem

What is your preferred method for reading through the contents of zipped directories with Perl ?

Original source