mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-14 08:01:16 +01:00
6 lines
196 B
Text
6 lines
196 B
Text
# Concatenate all pdf files into one:
|
||
pdftk *.pdf cat output all.pdf
|
||
|
||
# Concatenate pages 1 to 5 of first.pdf with page 3 of second.pdf
|
||
pdftk A=fist.pdf B=second.pdf cat A1-5 B3 output new.pdf
|
||
|