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

37
mupdf Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# mupdf
> A lightweight PDF, XPS, and E-book viewer.
> More information: <https://www.mupdf.com>.
- Open a PDF on the first page:
`mupdf {{path/to/file}}`
- Open a PDF on page 3:
`mupdf {{path/to/file}} {{3}}`
- Open a password secured PDF:
`mupdf -p {{password}} {{path/to/file}}`
- Open a PDF with an initial zoom level, specified as DPI, of 72:
`mupdf -r {{72}} {{path/to/file}}`
- Open a PDF with inverted color:
`mupdf -I {{path/to/file}}`
- Open a PDF tinted red #FF0000 (hexadecimal color syntax RRGGBB):
`mupdf -C {{FF0000}}`
- Open a PDF without anti-aliasing (0 = off, 8 = best):
`mupdf -A {{0}}`