tldr/pages/linux/xdg-open.md

25 lines
464 B
Markdown
Raw Normal View History

2021-03-29 13:44:53 +01:00
# xdg-open
> Opens a file or URL in the user's preferred application.
> More information: <https://man.archlinux.org/man/xdg-open.1>.
- Open the current directory in the default file explorer:
`xdg-open .`
- Open a URL in the default browser:
2021-03-29 13:44:53 +01:00
`xdg-open {{https://example.com}}`
- Open an image in the default image viewer:
`xdg-open {{path/to/image}}`
- Open a PDF in the default PDF viewer:
`xdg-open {{path/to/pdf}}`
- Display help:
`xdg-open --help`