Hi Monks!
I'm seeing some unusual IO::Uncompress::Gunzip behavior, that doesn't seem to track with how the gzip command works. Please help me understand this difference.
Basically, if I have a number of gzipped files in a directory, and run the command
cat files* | gunzip -c
I get the contents of all the files to stdout. However, if I do a similar thing from inside a perl script, using IO::Uncompress::Gunzip, I only get the contents of the first file.
Here is my test script (for unix):
use strict;
use warnings;
use IO::Compress::Gzip qw(gzip $GzipError) ;
use IO::Uncompress::Gunzip qw(gunzip $GunzipError) ;
my $file;
for my $txt ( qw(File1| File2| File3|) ) {
$file = "/tmp/tst${txt}.gz";
print STDERR "$file\n";
gzip \$txt => $file or die "gzip failed: $GunzipError\n";
}
my $contents = `cat /tmp/tst*`;
print STDERR "contents=$contents\n";
my $out;
gunzip \$contents => \$out or die "gunzip failed: $GunzipError\n";
print STDERR "Here comes the decrypted stuff:\n$out\n";
print STDERR "Now we use the gunzip command to do the same:\n";
print STDERR `cat /tmp/tst* | gunzip -c`;
Any pointers are greatly appreciated!
Thanks
-Craig
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|