import recipes: todo add to site
This commit is contained in:
parent
3e4932f921
commit
33de49464e
10 changed files with 160 additions and 0 deletions
22
todo-recipes/pdf.md
Normal file
22
todo-recipes/pdf.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# pdf
|
||||
|
||||
## Pull a page range from a pdf
|
||||
|
||||
```bash
|
||||
pdftk {filename.pdf} cat {page ranges} output {output.pdf}
|
||||
```
|
||||
|
||||
## Get metadata of a pdf
|
||||
|
||||
```bash
|
||||
pdfinfo {filename.pdf}
|
||||
```
|
||||
|
||||
## Concatenate a bunch of pdfs
|
||||
|
||||
Note: I think this overwrites the last input file if you forget to specify an output!!
|
||||
|
||||
```bash
|
||||
pdfunite {file.pdf...} {output.pdf}
|
||||
```
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue