in reply to IO::Compress::Gzip blank output

First always start your programs with this two lines:

use warnings; use strict;

And second always check results of open...

Replies are listed 'Best First'.
Re^2: IO::Compress::Gzip blank output
by shug94 (Sexton) on Sep 06, 2009 at 23:36 UTC
    I am using use strict, but I will add use warnings and see what that gives me. I am also checking the result of open, I just copied a snippet of my code to make it clearer.