IO::Cat - Object-oriented Perl implementation of cat


NAME

IO::Cat - Object-oriented Perl implementation of cat(1)


SYNOPSIS

  require IO::Cat;
  my $meow = new IO::Cat '/etc/motd';
  $meow->cat( \*STDOUT, \*STDERR )
        or die "Can't cat /etc/motd: $!";


DESCRIPTION

IO::Cat provides an intuitive, scalable, encapsulated interface to the common task of printing to a filehandle. Use it a few times, and you'll never know how you lived without it!


METHODS


AUTHOR

Dennis Taylor, <corbeau@execpc.com>


SEE ALSO

cat(1) and the File::Cat module.

 IO::Cat - Object-oriented Perl implementation of cat