Version 0.9.1

Datei 'www/show_log.php' Zurück zur Übersicht
<?php
$rows = 40;
echo "<pre>";

$log = '/var/log/smartHome/smart.log';
system("tail -". $rows ." '$log' | tac");

echo "</pre>";

?>