Published in: Bash
tail -n+99 foo.txt will read everything from foo.txt, starting with line 99. Pipe that into more and you just look at the few line(s) you really need.
Todo: I'd like to learn to narrow this so I only print the lines I want to see, not the lines AND everything after.
tail -n+99 foo.txt | more
You need to login to post a comment.
