Skip to content

Instantly share code, notes, and snippets.

@a5ync
Created April 20, 2016 00:47
Show Gist options
  • Save a5ync/a4e76b13baa68ef5b6f214b728d44fe1 to your computer and use it in GitHub Desktop.
Save a5ync/a4e76b13baa68ef5b6f214b728d44fe1 to your computer and use it in GitHub Desktop.
Powershell version of linux tail
Get-Content myTestLog.log –Wait
#with filters
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