From 1fe3bfcec0c0cd8e9953dfcc5f10f6713fb744fe Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sun, 5 Mar 2017 22:03:40 +0100 Subject: [PATCH] pdfctl: Fix 'extract' parameters --- .scripts/pdfctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/pdfctl b/.scripts/pdfctl index 4813318a..3c0a1ab0 100755 --- a/.scripts/pdfctl +++ b/.scripts/pdfctl @@ -142,7 +142,7 @@ compress () { } extract () { - gs -sDEVICE=pdfwrite -dNOPAUSE -dSAFER -dSAFER -dFirstPage="$EXTRACT_FIRST" -dBATCH -dLastPage="$EXTRACT_LAST" -sOutputFile="$output" "$input" + gs -sDEVICE=pdfwrite -dNOPAUSE -dSAFER -dBATCH -dFirstPage="$EXTRACT_FIRST" -dLastPage="$EXTRACT_LAST" -sOutputFile="$output" "$input" } resize () {