Saludos, tengo el problema que quiero ver un archivo access.log en tiempo real y uso el siguiente código:
print "content-type: text/html \n\n";
print qq|
<html>
<head>
<title>
Prueba de jQuery
</title>
<script src="jquery.js" type="text/javascript"></script>
</head>
<body>
|;
print "Bienvenidos a mi script, si vemos este mensaje es porque funciona todo perfecto";
</script>';
select(STDOUT); $| = 1; # Flush output after each print
print '<div id="resultadoConsulta" style="width:600px; height:300px; overflow:auto;">';
open(LS,"/usr/bin/tail -f /var/log/access.log|");
while ( $line ...