NAME
App::bif::Pager - pipe output to a system (text) pager
VERSION
0.1.5_7 (2015-11-25)
SYNOPSIS
use App::bif::Pager;
my $pager = App::bif::Pager->new;
print "This text goes to a pager\n";
undef $pager;
print "This text goes to STDOUT\n";
DESCRIPTION
App::bif::Pager opens a connection to a system pager and makes it the default filehandle so that by default any print statements are sent there.
When the pager object goes out of scope the previous default filehandle is selected again.
CONSTRUCTOR
The new()
constuctor takes the following arguments.
- auto
-
By default the pager is opened when the object is created. Set
auto
to a false value to inhibit this behaviour. - encoding
-
The Perl IO layer encoding to set after the pager has been opened. This defaults to ':utf8'. Set it to 'undef' to get binary mode.
- pager
-
The pager executable to run. If this is not given then the PAGER environment variable will be used, and if that is empty then the following programs will be searched for using File::Which: pager, less, most, w3m, lv, pg, more.
ATTRIBUTES
- fh
-
The underlying filehandle of the pager.
- pid
-
The process ID of the pager program (only set on UNIX systems)
- orig_fh
-
The original filehandle that was selected before the pager was started.
METHODS
- close
-
Explicitly close the pager. This is useful if you want to keep the object around to start and stop the pager multiple times. Can be called safely when no pager is running.
- open
-
Open the pager if it is not running. Can be called safely when the pager is already running.
SEE ALSO
IO::Pager - does something similar by mucking directly with STDOUT in a way that breaks fork/exec, and I couldn't for the life of me decipher the code style enough to fix it.
AUTHOR
Mark Lawrence <nomad@null.net>
COPYRIGHT AND LICENSE
Copyright 2014-2015 Mark Lawrence <nomad@null.net>
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.