in reply to pure perl tail revisited

Hi, I updated my code with a fix for small files. It works pretty well now.
if($chunk >= $filesize){$chunk = $filesize}
and
if($numlines >= $#tailtemp +1){$numlines = $#tailtemp +1}
It took about 10% off my benchmark speed, but is still relatively fast.