Take a look at perldoc -- it does paging while running, using a temporary file. The meat of the thing is this little sub:

sub page { my ($tmp, $no_tty, @pagers) = @_; if ($no_tty) { open(TMP,"<", $tmp) or die "Can't open $tmp: $!"; local $_; while (<TMP>) { print or die "Can't print to stdout: $!"; } close TMP or die "Can't close while $tmp: $!"; } else { foreach my $pager (@pagers) { last if system("$pager $tmp") == 0; } } }

The good perldoc tries to use an array of pagers, depending on system type (Win32, VMS, DOS, OS2, and of course *N*X), and even has a flexible idea of what a pager _is_ (notepad is one option for Win32).

Now, if there is a module doing the same kind of thing, or if someone were to make one -- I would like to know :-)

If I understand your problem right, you should be able to find what you need in the perldoc source. How is that for irony? perldoc teaching you programming techniques! :-)

The Sidhekin
print "Just another Perl ${\(trickster and hacker)},"


In reply to Re: print 'more'. by Sidhekin
in thread print 'more'. by artist

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.