Search code examples
linuxpowershellloggingtail

what is the equivalent of tail -f in windows powershell?


I want to get the continuous streaming of a Log file as we get using

tail -f command in Linux

In windows how can i achieve this?


Solution

  • Get-Content -Path "file" -Wait