To: Perl-Beginners
> > Subject: status messages as the program progresses
> >
> >
> > Hello everyone,
> >
> > I have a while loop that loops through a text file for quite
> > a while (10
> > min or so). Is there any way to print a status-type
> -Original Message-
> From: Tyler Longren [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 15, 2001 10:13 AM
> To: Perl-Beginners
> Subject: status messages as the program progresses
>
>
> Hello everyone,
>
> I have a while loop that loops through a
Hello everyone,
I have a while loop that loops through a text file for quite a while (10
min or so). Is there any way to print a status-type message while it's
looping through?
I did something like this now:
my $i=0;
while ($i le "1000") {
print "Processing\r";
}
And that works, bu