mirror of
https://github.com/cheat/cheat.git
synced 2024-11-10 21:26:49 +01:00
7 lines
196 B
Plaintext
7 lines
196 B
Plaintext
# 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
|
||
|