#launch #start #xdg-open

bin+lib open

Open a path or URL using the program configured on the system

45 stable releases (4 major)

5.3.0 Jul 10, 2024
5.1.4 Jun 4, 2024
5.1.2 Mar 7, 2024
5.0.1 Nov 22, 2023
1.0.2 Feb 28, 2015

#12 in Filesystem

Download history 88760/week @ 2024-07-18 87406/week @ 2024-07-25 85589/week @ 2024-08-01 93446/week @ 2024-08-08 89857/week @ 2024-08-15 86726/week @ 2024-08-22 94147/week @ 2024-08-29 94997/week @ 2024-09-05 93075/week @ 2024-09-12 88185/week @ 2024-09-19 100859/week @ 2024-09-26 108233/week @ 2024-10-03 99827/week @ 2024-10-10 103275/week @ 2024-10-17 97561/week @ 2024-10-24 99958/week @ 2024-10-31

419,404 downloads per month
Used in 484 crates (360 directly)

MIT license

25KB
427 lines

Crates.io cross-platform-testing

Use this library to open a path or URL using the program configured on the system. It is equivalent to running one of the following:

# macOS
$ open <path-or-url>
# Windows
$ start <path-or-url>
# Linux
$ xdg-open <path-or-url> || gio open <path-or-url> || gnome-open <path-or-url> || kde-open <path-or-url> || wslview <path-or-url>

Library Usage

Add this to your Cargo.toml

[dependencies]
open = "5"

…and open something using…

open::that("https://rust-lang.org");

…or, open something with an application of your choice

open::with("https://rust-lang.org", "firefox");

Follow this link for the API docs.

Binary Usage

This crate also implements a binary that acts like an opener itself.

cargo run 'file to open'

Credits

The implementation is based on the respective functionality of Cargo, but was improved to allow some error handling.

Dependencies

~55KB