Re: status messages as the program progresses

2001-08-15 Thread Tyler Longren
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

RE: status messages as the program progresses

2001-08-15 Thread Bob Showalter
> -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

status messages as the program progresses

2001-08-15 Thread Tyler Longren
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