Max Clark wrote: > I am trying to write a cgi program to "tail -f" a log file. I have a perl > script that will open and print the log file, however it closes as soon as > it reads whatever is in the file at that particular time. How do I mimic > "tail -f" functionality?
try the qx// operator: my $tail = qx/tail -f filename.ext/; print $tail; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]