
I used "git grep -FIn http://" to find all occurrences, and looked at each one. If an occurrence was really just a link, and if a https version exists, and if our Browser can access it at least as well as the http version, then I changed the occurrence to https. I'm happy to report that I didn't run into a single site where Browser can't deal with the https version.
22 lines
344 B
Markdown
22 lines
344 B
Markdown
## Name
|
|
|
|
open - open file or URL
|
|
|
|
## Synopsis
|
|
|
|
```**sh
|
|
$ open <file-or-url...>
|
|
```
|
|
|
|
## Description
|
|
|
|
Open the given file(s), or the given URL(s), in the standard viewer for that
|
|
kind of file. For non-file URLs, open the URL in the Browser.
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
$ open https://serenityos.org https://example.org
|
|
$ open /proc
|
|
$ open /etc/fstab
|
|
```
|