Unless you've landed in a very inhospitable environment--like, say, Windows--you should be able to take advantage of the native tools. For example:
local $SIG{PIPE} = 'IGNORE';
open PAGER, '|'.($ENV{PAGER} || 'less')
or die "Can't spawn pager: $!\n";
while (something) {
print PAGER something_else;
}
close PAGER;
The (temporary) assignment to $SIG{PIPE} keeps your program from dying if the pager quits early. If you're
concerned about wasting time generating useless data, you
may want to add this refinement:
select PAGER;
$| = 1;
while (something) {
print something_else
or last;
}
Remember, tool use is one of the things that make us human. :-)
UPDATE:Thanks to agoth for the bug fix. And yes, tye, I know that Windows has a "more" command. But it's so hostile that I never use it. There is a Windows port of "less", anyway.
-- Chip Salzenberg, Free-Floating Agent of Chaos
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.