initial commit

This commit is contained in:
moo
2022-06-15 16:57:55 +02:00
parent a9336cc939
commit 4bdf697940
30 changed files with 2567 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
if(isset($_GET['lines'])) {
$lines = $_GET['lines'];
}
else {
$lines = 20;
}
$date_today = date("Ymd");
echo "<pre>".shell_exec("tail -". $lines ." /home/zutritt/Documents/sarah/logs/".$date_today."_debug_log.csv")."</pre>";
?>