..thank you all for your comments: i got it going.
thanks again
steef
On 26-08-19 10:33, Curt wrote:
On 2019-08-26, steef <debian.li...@home.nl> wrote:
hi folks!
is there a simple commandline command to get pdftk so kind to merge a
couple of pdf-files? the explanation in the man and --help-files is
for me in somewhat cryptic english. kind regards, Now it complains
with 'input-errors'.
Join pdfs:
pdftk foo.pdf bar.pdf cat output foobar.pdf
Split pdf into one-page files:
pdftk foo.pdf burst
(outputs pg_0001.pdf, pg_0002.pdf and so on)
Just page 22:
pdftk foo.pdf cat 22 output bar22.pdf
Only pages 1-22:
pdftk foo.pdf cat 1-22 output bar1to22.pdf
steef