From 7fd14afc9d6be85d0a17868ab4be80632ae133e4 Mon Sep 17 00:00:00 2001 From: Sahil Dhiman <52946452+sahilister@users.noreply.github.com> Date: Thu, 17 Sep 2020 20:46:47 +0000 Subject: [PATCH] pdfseparate: add page --- pages/common/pdfseparate.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/pdfseparate.md diff --git a/pages/common/pdfseparate.md b/pages/common/pdfseparate.md new file mode 100644 index 0000000000..22b5571111 --- /dev/null +++ b/pages/common/pdfseparate.md @@ -0,0 +1,16 @@ +# pdfseparate + +> Portable Document Format (PDF) file page extractor. +> More information: . + +- Extract pages from PDF file and make 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}}`