Help for this page
my ($filename, $rest) = split /,/, $_, 2; if (index($filename, $to_find) > -1) { my ($cms, $path, $size, $day, $time) = split /,/, $rest;
open(F, "+< $infile"); while (sysread F, $_, 32768) { $_ .= <F>; ... } } close(F);