B. Watson b2832fab02 perl/perl-IO-All: Wrap README at 72 columns. il y a 2 ans
..
README b2832fab02 perl/perl-IO-All: Wrap README at 72 columns. il y a 2 ans
perl-IO-All.SlackBuild 63daf9f79a All: Support $PRINT_PACKAGE_NAME env var il y a 3 ans
perl-IO-All.info 2e0c0a1cf4 perl/perl-IO-All: Updated for version 0.87. il y a 7 ans
slack-desc 1284b98be0 perl/perl-IO-All: Added (IO modules). il y a 9 ans

README

IO::All combines all of the best Perl IO modules into a single nifty
object oriented interface to greatly simplify your everyday Perl IO
idioms. It exports a single function called io, which returns a new
IO::All object. And that object can do it all!

The IO::All object is a proxy for IO::File, IO::Dir,
IO::Socket, Tie::File, File::Spec, File::Path, File::MimeInfo and
File::ReadBackwards; as well as all the DBM and MLDBM modules. You
can use most of the methods found in these classes and in IO::Handle
(which they inherit from). IO::All adds dozens of other helpful
idiomatic methods including file stat and manipulation functions.

IO::All is pluggable, and modules like IO::All::LWP and
IO::All::Mailto add even more functionality. Optionally, every IO::All
object can be tied to itself. This means that you can use most perl IO
builtins on it: readline, <>, getc, print, printf, syswrite, sysread,
close.

The distinguishing magic of IO::All is that it will automatically
open (and close) files, directories, sockets and other IO things for
you. You never need to specify the mode (<, >>, etc), since it is
determined by the usage context.