use Archive::Zip; my $zip = Archive::Zip->new(); foreach my $file (@files) { $zip->addFile($file); }; $zip->writeToFileHandle(STDOUT);