mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 21:52:12 +01:00
added examples for pdftk (manipulating pdf files)
This commit is contained in:
parent
79a091a275
commit
4f83172647
1 changed files with 6 additions and 0 deletions
6
cheatsheets/pdftk
Normal file
6
cheatsheets/pdftk
Normal file
|
@ -0,0 +1,6 @@
|
|||
# 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
|
||||
|
Loading…
Reference in a new issue