For Programmers: Free Programming Magazines  


Home > Archive > PERL Modules > February 2005 > [ANNOUNCE] PerlIO::via::Bzip2









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author [ANNOUNCE] PerlIO::via::Bzip2
Arjen Laarhoven

2005-02-27, 8:56 am

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


Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com