An attempt to provide a solution to avoid routine IO chores. Works only on UNIX based machines.
Version
0.38
Installation
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
To install IO::Routine at custom location, run the following commands:
perl Makefile.PL PREFIX=/path/to/custom/perllib LIB=/path/to/custom/perllib/lib
make
make test
make install
and then in your script add that path to your @INC variable as:
BEGIN{ push (@INC, '/path/to/custom/perllib/lib') };
Or, for UNIX systems, edit your .bash_profile by adding custom location to PERL5LIB
export PERL5LIB=$PERL5LIB:/path/to/custom/perllib/lib
Support and Documentation
After installing, you can find documentation for this module with the perldoc command.
You can also look for information at:
- RT, CPAN's request tracker (report bugs here)
- AnnoCPAN, Annotated CPAN documentation
- CPAN Ratings
- Search CPAN