You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
348 B

3 years ago
  1. #!/bin/bash -x
  2. #qpdf 8.4 or newer only
  3. #qpdf $1 --pages . 1-5 -- $2
  4. #qpdf older must!! be:
  5. #qpdf $1 --pages $1 2-$3 -- $2
  6. #part two has a separate sized page in it...
  7. #need to print out separately
  8. qpdf $1 --pages $1 2-195,202-205 -- $2
  9. #note: pass in $1 input, $2 output, $3 last page #
  10. #qpdf -version
  11. #https://github.com/qpdf/qpdf/issues/307