tail + grep powershell equivalent
Get-Content C:\temp\mylogfile.log -tail 100 –wait | Select-String 'search' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Get-Content C:\temp\mylogfile.log -tail 100 –wait | Select-String 'search' |
This comment has been minimized.
Useful thanks :)