1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 03:42:12 +02:00
tldr/pages/linux/sxiv.md
Lena d427f333b2
pages/*: add backticks around I/O streams (#10436)
* as suggested in #10428
* standard input  => `stdin`
* standard output => `stdout`
* standard error  => `stderr`

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-08-09 10:59:02 +05:30

24 lines
493 B
Markdown

# sxiv
> Simple X Image Viewer.
> More information: <https://github.com/muennich/sxiv>.
- Open an image:
`sxiv {{path/to/file}}`
- Open an image in fullscreen mode:
`sxiv -f {{path/to/file}}`
- Open a newline-separated list of images, reading filenames from `stdin`:
`echo {{path/to/file}} | sxiv -i`
- Open a space-separated list of images as a slideshow:
`sxiv -S {{seconds}} {{path/to/file}}`
- Open a space-separated list of images in thumbnail mode:
`sxiv -t {{path/to/file}}`