App::PipeFilter::Role::Opener::GenericInput - common method to open input files
version 0.005
package App::PipeFilter::Role::Opener::GenericIO; use Moose::Role; with qw( App::PipeFilter::Role::Opener::GenericInput App::PipeFilter::Role::Opener::GenericOutput ); 1;
App::PipeFilter::Role::Opener::GenericInput provides a generic open_input() method to open named input files, devices or streams. It opens STDIN when the input file is named "-" (which is often the default).
App::PipeFilter::Generic uses open_input() to open the input files specified on the command line. Opening files is done in a dedicated method so it may be augmented or overridden in subclasses.
You may read this module's implementation in its entirety at
perldoc -m App::PipeFilter::Role::Opener::GenericInput
App::PipeFilter has top-level documentation including a table of contents for all the libraries and utilities included in the project.
https://rt.cpan.org/Public/Dist/Display.html?Name=App-PipeFilter
https://github.com/rcaputo/app-pipefilter
App::PipeFilter::Role::Opener::GenericInput is Copyright 2011 by Rocco Caputo. All rights are reserved. App::PipeFilter::Role::Opener::GenericInput is released under the same terms as Perl itself.