Is there a way to simulate the *nix head command in DOS? I have a file and I want a way to stip off the first n-lines of text. For example:
D:\>type file.txt
line one
line two
line three
D:\>*[call to head]* > result.txt
D:\>type result.txt
line two
line three