Re: More or Pager function is Perl

2002-05-16 Thread $Bill Luebkert
Ron Grabowski wrote: >>This is what I use in a program that mimics the Unix head command: Or just get 'less' for Windoze and use that in place of more for your pager. -- ,-/- __ _ _ $Bill Luebkert ICQ=14439852 (_/ / )// // DBE Collectibles Mailto:[EMAIL

Re: More or Pager function is Perl

2002-05-16 Thread Ron Grabowski
> This is what I use in a program that mimics the Unix head command: http://www.perl.com/language/ppt/src/head/ ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: More or Pager function is Perl

2002-05-16 Thread Dirk Bremer \(NISC\)
> I'm output a massive list to STDOUT but wish to break it like the MORE > function in DOS. For instance I have a huge array and for each row the > array I'm outputting to STDOUT. But when the output reaches the end of the > page, I would like to pause it. What's the best way to do this? > > th