Can someone tell me how to extract the uncompressed data from the returned value using 
the script below? I try and print the $fio variable, but I get some hash reference. Do 
I need to iterate through this hash and then print the values or am I just going about 
this all wrong? I am trying to just open the gzip file and read the contents. I am 
using this module because I am limed to a box running 5.6.

Thanks in advance.

script:
===========
#!/usr/bin/perl
use IO::Filter::gzip;
$io = "denver.gz";
$fio = new IO::Filter::gzip ($io, "r");
print "$fio\n";

ouput:
===========
$./test.pl 
IO::Filter::gzip=HASH(0x8132004)


--
Jose Malacara
[EMAIL PROTECTED]

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to