| IO-Pager documentation | Contained in the IO-Pager distribution. |
IO::Pager - Select a pager, optionally pipe it output if destination is a TTY
#Select a pager, sets $ENV{PAGER}
use IO::Pager;
#Optionally pipe output
{
#local $STDOUT = IO::Pager::open *STDOUT;
local $STDOUT = new IO::Pager *STDOUT;
print <<" HEREDOC" ;
...
A bunch of text later
HEREDOC
}
IO::Pager is lightweight and can be used to locate an available pager and set $ENV{PAGER} (see NOTES) or as a factory for creating objects defined elsewhere such as IO::Pager::Buffered and IO::Pager::Unbuffered.
IO::Pager subclasses are designed to programmatically decide whether or not to pipe a filehandle's output to a program specified in $ENV{PAGER}. Subclasses are only required to support filehandle output methods and close, namely
Supports close() of the filehandle.
Supports print() to the filehandle.
Supports printf() to the filehandle.
Supports syswrite() to the filehandle.
For anything else, YMMV.
Instantiate a new IO::Pager to paginate FILEHANDLE if necessary. Assign the return value to a scoped variable.
See the appropriate subclass for implementation specific details.
Defaults to currently select()-ed FILEHANDLE.
An expression which evaluates to the subclass of object to create.
Defaults to IO::Pager::Unbuffered.
An alias for new.
Explicitly close the filehandle, this stops any redirection of output on FILEHANDLE that may have been warranted. Normally you'd just wait for the object to pass out of scope.
This does not default to the current filehandle.
See the appropriate subclass for implementation specific details.
The location of the default pager.
If PAGER does not specify an absolute path for the binary PATH may be used.
See NOTES for more information.
IO::Pager may fall back to these binaries in order if $ENV{PAGER} is not executable.
See NOTES for more information.
The algorythm for determining which pager is to use as follows:
Use the value of $ENV{PAGER} if it exists unless File::Which is available and the pager in $ENV{PAGER} is determined to be unavailable.
Try the standard, hardcoded paths in FILES.
If File::Which is available check for less and more.
Set $ENV{PAGER} to more
Steps 1, 3 and 4 rely upon $ENV{PATH}.
IO::Pager::Buffered, IO::Pager::Unbuffered, IO::Pager::Page
IO::Page, Tool::Less
Jerrad Pierce <jpierce@cpan.org>
This module is forked from IO::Page 0.02 by Monte Mitzelfelt
| IO-Pager documentation | Contained in the IO-Pager distribution. |
package IO::Pager; use 5; use strict; use vars qw( $VERSION ); use File::Spec; $VERSION = 0.05; BEGIN { eval 'use File::Which'; my $which = !$@; if( defined($ENV{PAGER}) ){ # my $pager =~ (split(/(?<!\\)\s/, $ENV{PAGER}))[0]; my $pager = (split(' ', $ENV{PAGER}))[0]; #Some platforms don't do -x so we use -e unless( File::Spec->file_name_is_absolute($pager) && -e $pager ){ if( $which ){ #In case of non-absolute value foreach( File::Which::where($ENV{PAGER}) ){ do{ $ENV{PAGER} = $_; last } if -e; } } } } else{ my @loc = ( '/usr/local/bin/less', '/usr/bin/less', '/usr/bin/more' ); push(@loc, File::Which::where('less'), File::Which::where('more') ) if $which; foreach( @loc ) { do{ $ENV{PAGER} = $_; last } if -e; } $ENV{PAGER} ||= 'more'; } } sub new(;$$){ shift; goto &open; } sub open(;$$){ my $class = scalar @_ > 1 ? pop : undef; $class ||= 'IO::Pager::Unbuffered'; eval "require $class"; $class->new($_[0], $class); } 1; __END__