Help for this page

Select Code to Download


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