HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

evince — View documents. More information: <https://manned.org/evince>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
httpscommandevincecliinformationdocumentsmoreview
linux

Problem

How to use the evince command: View documents. More information: <https://manned.org/evince>.

Solution

evince — View documents. More information: <https://manned.org/evince>.

Open a PDF file:
evince {{path/to/file.pdf}}


Open multiple documents:
evince {{file1.pdf file2.pdf ...}}


Open in fullscreen mode:
evince {{[-f|--fullscreen]}} {{path/to/file.pdf}}


Open in presentation mode:
evince {{[-s|--presentation]}} {{path/to/file.pdf}}


Open a specific page number:
evince {{[-i|--page-index]}} {{5}} {{path/to/file.pdf}}

Code Snippets

Open a PDF file

evince {{path/to/file.pdf}}

Open multiple documents

evince {{file1.pdf file2.pdf ...}}

Open in fullscreen mode

evince {{[-f|--fullscreen]}} {{path/to/file.pdf}}

Open in presentation mode

evince {{[-s|--presentation]}} {{path/to/file.pdf}}

Open a specific page number

evince {{[-i|--page-index]}} {{5}} {{path/to/file.pdf}}

Context

tldr-pages: linux/evince

Revisions (0)

No revisions yet.