summaryrefslogtreecommitdiff
path: root/ext/IO/Compress/Zlib/examples/gzstream
blob: 9d03bc574937f00fe2c10f6511e3eea53372875c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/local/bin/perl

use strict ;
use warnings ;
use IO::Compress::Gzip qw(gzip $GzipError);

gzip '-' => '-', Minimal => 1
  or die "gzstream: $GzipError\n" ;

#exit 0;

__END__

#my $gz = new IO::Compress::Gzip *STDOUT 
my $gz = new IO::Compress::Gzip '-'
	  or die "gzstream: Cannot open stdout as gzip stream: $GzipError\n" ;

while (<>) {
    $gz->write($_) 
	or die "gzstream: Error writing gzip output stream: $GzipError\n" ;
}

$gz->close
    or die "gzstream: Error closing gzip output stream: $GzipError\n" ;