When working with large log files, a very common requirement is to extract a piece of log that's interesting. Most log files are actually text files, therefore it should be quite easy to do this, as long as you know the start line and the end line.
The following bash script will print to the standard output the content of the given text file, from the given start line to the end line.