Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gfx/perl-perlio-util
PerlIO::Util on CPAN
https://github.com/gfx/perl-perlio-util
Last synced: 26 days ago
JSON representation
PerlIO::Util on CPAN
- Host: GitHub
- URL: https://github.com/gfx/perl-perlio-util
- Owner: gfx
- Created: 2010-01-26T04:36:32.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-01-28T05:09:05.000Z (almost 15 years ago)
- Last Synced: 2023-10-20T19:59:09.798Z (about 1 year ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/PerlIO-Util/
- Size: 119 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
NAME
PerlIO::Util - A selection of general PerlIO utilities
SYNOPSIS
use PerlIO::Util;
# to create $file if needed, and then call flock($in, LOCK_EX)
my $in = PerlIO::Util->open('+<:creat :flock', $file);# to multiplex output
*STDERR->push_layer(tee => ">> $err_log");# to read lines backward
my $in = PerlIO::Util->open('<:reverse', $file);# to open file encoded to filesystem encoding
# (need to set PERLIO_FSE unless using Win32)
my $in = PerlIO::Util->open('<:fse', $file);INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make installDEPENDENCIES
Perl 5.8.1 or later, and a C compiler.
COPYRIGHT AND LICENCE
Copyright (C) 2008-2010, Goro Fuji , Some rights reversed.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.