On unix I can do a
tail -f file
And the equivalent powershell command is
gc file -Wait
However on unix I can press enter to add some blank lines (for readability) on the console while it is outputting lines, but not in powershell. Any workaround?
Use case: On unix I run tail -f /some/webserver/log/file
and it outputs the last part of the log. I then do some http-requests and the log scrolls by accordingly. I then press enter a couple of times to get some blank space in the console, so the log entry for the next request stands out because of the blank lines above.