I need to tail file by it filename in Windows so i could tail file when it was deleted and replaced by another file with same name (e.g. it's helplful for logrotating).
At Linux i used tail -f -F
. Is there any equivalent in Windows?
I looked into Get-Content
but it has no tail -F
-like parameter (do not confuse it with tail -f
)