Base: Document open(1)

This commit is contained in:
Sergey Bugaev 2020-04-19 12:08:38 +03:00 committed by Andreas Kling
parent b6eb7f42ac
commit 15daf88e93
Notes: sideshowbarker 2024-07-19 07:28:44 +09:00

View file

@ -0,0 +1,22 @@
## 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 http://serenityos.org http://example.org
$ open /proc
$ open /etc/fstab
```