Skip to content

Instantly share code, notes, and snippets.

@florianajir
Last active February 17, 2023 11:12
Show Gist options
  • Save florianajir/c33262aafc0894f16adee1691145fdf5 to your computer and use it in GitHub Desktop.
Save florianajir/c33262aafc0894f16adee1691145fdf5 to your computer and use it in GitHub Desktop.
Tail log file on windows

Windows PowerShell

Without filter

Get-Content myTestLog.log –Wait

With filter

Get-Content myTestLog.log -wait | where { $_ -match “WARNING” }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment