pdftk
Sección: Administración de sistemas
Creado: 15-11-24 (Actualizado: 06-07-18)
sudo aptitude install pdftk
Split large pdf into many one-page files:
pdftk largepdfile.pdf burst
(as the result you will get many small files like pg_0001.pdf, pg_0002.pdf and so on).
Merge files into one PDF file:
pdftk *.pdf cat output onelargepdfile.pdf
pdftk is extremely powerful and makes it possible to do almost anything with input pdf files. Thus above two commands are just examples showing how to split and merge pdf files in Ubuntu easily.