в Linux есть команда
tail -f имя_лога.txt
в PowerShell Windows есть команда
(Get-Content $logpath | Out-String) -replace "`n", "`r`n" -wait| Out-File $logpath
будет делать вывод добавленных строк и будет удалять переводы строк заменяя их.
+ There are no comments
Add yours