in reply to Re: status
in thread Reporting "percent done" while processing a large file

Perhaps its just me, but I always find the construct:
if ( ( whatever ) == 0 ) { }
easier to read, when written like so:
unless ( whatever ) { }
So, I would have written the above as:
unless ($. % 5000) { print "Processed $. records\n"; # or, just to let them know # print "."; }

-Blake
off to try that cool -s trick for status bars....