The pdftk command (pdf toolkit) can perform many operations on pdf files. One that I found useful is extracting certain pages from a pdf file. For example, to extract page 115-142 from input.pdf and save it as chapter5.pdf, the command would become:
pdftk input.pdf cat 115-142 output chapter5.pdf