<?php
$file = "logs/images.example.ru.error.log"; // указываем сам файл и путь к нему
$lines = count(file($file)); // высчитываем количество ошибок
echo "В файле $file количество ошибок $lines"; // отображаем результат
$file2 = "logs/images.ineeds.ru.error.log.1"; // указываем сам файл и путь к нему
$lines2 = count(file($file)); // высчитываем количество ошибок
echo "В файле $file2 количество ошибок $lines2"; // отображаем результат
?>
grep -P -o 'Fatal error|Syntax error|Not Found' logs/images.*.error.log | sort | uniq -c | sort -V
wc -l logs/images.*.error.log
cat images.example.ru.error.log | grep '^Fatal error' | wc -l