Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
xpdf Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# xpdf
> Portable Document Format (PDF) file viewer.
> More information: <https://www.xpdfreader.com/xpdf-man.html>.
- Open a PDF file:
`xpdf {{path/to/file.pdf}}`
- Open a specific page in a PDF file:
`xpdf {{path/to/file.pdf}} :{{page_number}}`
- Open a compressed PDF file:
`xpdf {{path/to/file.pdf.tar}}`
- Open a PDF file in fullscreen mode:
`xpdf -fullscreen {{path/to/file.pdf}}`
- Specify the initial zoom:
`xpdf -z {{75}}% {{path/to/file.pdf}}`
- Specify the initial zoom at page width or full page:
`xpdf -z {{page|width}} {{path/to/file.pdf}}`