Help for this page
my $file = "file.gz"; open(IN, "gzcat $file |") or die "gunzip $file: $!"; while ( <IN> ) { ... } close(IN);