To split a PDF from page 369 to page 385 inclusive using Ghostscript in Linux, you can use the following command:
gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER -dFirstPage=369 -dLastPage=385 -sOutputFile=output.pdf input.pdfThis command uses Ghostscript to create a new PDF file (output.pdf) containing pages 369 to 385 from the original PDF file (input.pdf).
>>Click here to continue<<