HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pdfseparate — Portable Document Format (PDF) file page extractor. More information: <https://manned.org/pdfseparat

Submitted by: @import:tldr-pages··
0
Viewed 0 times
documentcommandformatclipdffilepdfseparateportable

Problem

How to use the pdfseparate command: Portable Document Format (PDF) file page extractor. More information: <https://manned.org/pdfseparate>.

Solution

pdfseparate — Portable Document Format (PDF) file page extractor. More information: <https://manned.org/pdfseparate>.

Extract pages from PDF file and make a separate PDF file for each page:
pdfseparate {{path/to/source_filename.pdf}} {{path/to/destination_filename-%d.pdf}}


Specify the first/start page for extraction:
pdfseparate -f {{3}} {{path/to/source_filename.pdf}} {{path/to/destination_filename-%d.pdf}}


Specify the last page for extraction:
pdfseparate -l {{10}} {{path/to/source_filename.pdf}} {{path/to/destination_filename-%d.pdf}}

Code Snippets

Extract pages from PDF file and make a separate PDF file for each page

pdfseparate {{path/to/source_filename.pdf}} {{path/to/destination_filename-%d.pdf}}

Specify the first/start page for extraction

pdfseparate -f {{3}} {{path/to/source_filename.pdf}} {{path/to/destination_filename-%d.pdf}}

Specify the last page for extraction

pdfseparate -l {{10}} {{path/to/source_filename.pdf}} {{path/to/destination_filename-%d.pdf}}

Context

tldr-pages: common/pdfseparate

Revisions (0)

No revisions yet.