I have a very large text file and I want to view, say, lines 2000 through 2010 (with the line numbers included)
I know one sort of roundabout way of getting there:
sc -l [file]
cat -n [file] | tail -n [previous result - 2000] | head -n 10
But it feels like there must be a better way. Is there?