Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi,I was doing a perl script which will do unzipping a .gz file and doing some operations.This script was working for small files.But when i tried with some big files i was getting an error like "gunzip failed: Inflation Error: data error for <filename>".Can anyone help?
The code i used for this isuse IO::Uncompress::Gunzip qw(gunzip $GunzipError); gunzip $input => $output or die "gunzip failed: $GunzipError for $output\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Inflation error
by choroba (Cardinal) on Jan 08, 2013 at 09:49 UTC | |
|
Re: Inflation error
by Anonymous Monk on Jan 08, 2013 at 07:33 UTC | |
by Anonymous Monk on Jan 08, 2013 at 08:46 UTC | |
by Anonymous Monk on Jan 08, 2013 at 09:07 UTC |