Windows How to `tail` on Windows 2018-10-11 Pistolfly Leave a comment https://www.pistolfly.com/weblog/en/2018/10/how-to-tail-on-windows.html ツイート シェア 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) Related