Tail a File in PowerShell

In PowerShell, we can use the following command to watch the new lines being appended to a file:

Get-Content -path "<file_path>" -Wait

where <file_path> should be replaced with the path of the relevant file.

The command is roughly equivalent to tail -f from Unix/Linux.