in reply to Re: Line by line buffered read
in thread Line by line buffered read

That's kind of what I was thinking of, but I would prefer to modify the open statement to include a die statement, such as below:

open (IN,"<",$file) || die "Unable to open file '$file': $!\n";

Also, I would think that the sleep statements in the OP are actually "slowing" it down by making it run longer. Based on the code provided, it doesn't look like the sleep statements are needed. Of course, since I have never used sysread, I may be completely wrong about this.

Replies are listed 'Best First'.
Re^3: Line by line buffered read
by muyprofesional (Initiate) on Aug 20, 2010 at 16:55 UTC
    Thansk for de "or die", the sleep is just for show best the ouptput each time i print, in a big file, else, u can't show it instead.