PowerShellでtailする
from
Windowsバッチでtailする
PowerShellでアレしたい
code:tail.ps1
Get-Content -Encoding UTF8 -Path C:\hoge\hoge.log -Tail 0 -Wait
Get-Content
コマンドの
-Tail
オプションを使えばできる
-Encoding
オプション追加した
(2020/02/18)