I don\'t have a decent text editor on this server, but I need to see what\'s causing an error on line 10 of a certain file. I do have PowerShell though...
This will show the 10th line of myfile.txt:
get-content myfile.txt | select -first 1 -skip 9
both -first and -skip are optional parameters, and -context, or -last may be useful in similar situations.
-first
-skip
-context
-last