3
votes
How do I read in the contents of a directory in Perl?
You could use DirHandle:
use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
…
6
votes
Reading data from a log file as a separate application is writing to it.
In Perl, the File::Tail module does exactly what you need.
…
