Is there a way to paginate the output by piping it to some \'more\' command, which is available in linux\\unix shells?
cat C:\Temp\test.txt
cat is an alias for Get-Content - with larger files you will get the -- More -- output at the bottom of the terminal
You can also you can add -wait
cat C:\Temp\test.txt -wait
-wait is like using tail but it actually is rerunning the command just refreshing the output
cat C:\Temp\test.txt | oh –Paging
oh = Out-Host