On Windows PowerShell
> Get-Content <PATH> -Wait -Tail 1000
is equivalent to:
$ tail -f -n 1000 <PATH>
on *nix.
("1000" in the above example represents the number of display lines)
On Windows PowerShell
> Get-Content <PATH> -Wait -Tail 1000
is equivalent to:
$ tail -f -n 1000 <PATH>
on *nix.
("1000" in the above example represents the number of display lines)