NEVERSLEEP
Programmer
im trying to get the 'dos buffer height' max
i have read C:\Perl\html\site\lib\Win32\Console.html
and dont seem do get it done...
what i am to achive is like this example
so how could i do that ? ---------------------------------------
someone knowledge ends where
someone else knowledge starts
i have read C:\Perl\html\site\lib\Win32\Console.html
and dont seem do get it done...
what i am to achive is like this example
Code:
#!perlpath
$file; # lets say there is 3000 lignes in this file
open(FILE, "$file") || die "\ndead $!";
while (<FILE>) {
print "\n$_";
# this is the line i wish*
&pause if ($row_buffer == $full);
}
close(FILE) || die "\ndead $!";
exit;
sub pause {while (! <STDIN>) {sleep;}}
so how could i do that ? ---------------------------------------

someone knowledge ends where
someone else knowledge starts