in reply to Using File::ReadBackwards with Compressed Files

have you tried it like this
my $filepipe = "zcat $filename |"; my $bw = File::ReadBackwards->new($filepipe) or die "can't read $filep +ipe: $!\n";
but i'm not sure about that...

but anyway... the module probably has to have read in the complete file into memory or temporary store it somewhere completly, so it will probably simpler to decompress it in the first place and than reading it backwards.