[ANNOUNCE] PerlIO::via::Bzip2

From: Arjen Laarhoven (arjen_at_nospam.demon.nl)
Date: 02/26/05


Date: Sat, 26 Feb 2005 20:14:49 GMT

Hi,

I'd like to announce the release of PerlIO::via::Bzip2 to the world.
>>From the documentation:

NAME
    PerlIO::via::Bzip2 - PerlIO::via layer for Bzip2 (de)compression

SYNOPSIS
        # Read a bzip2 compressed file from disk.
        open(my $fh, "<:via(Bzip2)", "compressed_file");
        my $uncompressed_data = <$fh>;

        # Compress data on-the-fly to a bzip2 compressed file on disk.
        open(my $fh, ">:via(Bzip2)", "compressed_file");
        print {$fh} $uncompressed_data;

DESCRIPTION
    This module implements a PerlIO layer which will let you handle bzip2
    compressed files transparently.

[...]

COPYRIGHT AND LICENSE
    Copyright (C) 2005 by Arjen Laarhoven

    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

Enjoy,

Arjen



Relevant Pages