Is there a way to simulate the *nix tail command on the Windows command line? I have a file and I want a way to snip off the first n lines of text. For example:
Powershell:
Get-Content C:\logs\result.txt -Tail 10 Get-Content C:\logs\result.txt -wait (monitor the tail)