Created
April 20, 2016 00:47
-
-
Save a5ync/a4e76b13baa68ef5b6f214b728d44fe1 to your computer and use it in GitHub Desktop.
Powershell version of linux tail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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