in reply to unzipping files with .gz extension

do you need a perl script for that?
if yes
then please try it urself ,you'll feel good trying it urself
try this and this

Replies are listed 'Best First'.
Re^2: unzipping files with .gz extension
by Anonymous Monk on Dec 30, 2012 at 04:15 UTC

    Hi, I need perl script itself.My code is throwing an error like this Can't locate loadable object for module PerlIO::gzip in @INC (@INC contains: C:/ Perl/site/lib C:/Perl/lib .) at unzip2.pl line 1 Compilation failed in require at unzip2.pl line 1. BEGIN failed--compilation aborted at unzip2.pl line 1.

    use PerlIO::gzip; open( IN, "<:gzip", test1.txt.gz ) or die "open failed\n"; while (<IN>) { print $_; }

      Pop on over to CPAN and install PerlIO::gzip, then.

      ...roboticus

      When your only tool is a hammer, all problems look like your thumb.