<?php $log_file_path = $_SERVER['argv'][1]; $check_line_number = 30000; while (true) { $time = time() - 60; $date_str = date('d/M/Y:H:i', $time); if (file_exists("$log_file_path")) { $cmd = "tail -n {$check_line_number} {$log_file_path} | fgrep '{$date_str}' | fgrep php | fgrep -v png | fgrep -v jpg | wc -l"; } echo date('Y/m/d H:i', $time) ." "; system($cmd); sleep(60); }