summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@serenityos.org>2020-04-19 12:08:38 +0300
committerAndreas Kling <kling@serenityos.org>2020-04-19 11:14:26 +0200
commit15daf88e9305748794938c75470f0289e7166b44 (patch)
tree295cb57b419407ccc9efec6ca85cf958694c92c1
parentb6eb7f42ac5036070874e2cac234ad347775d539 (diff)
downloadserenity-15daf88e9305748794938c75470f0289e7166b44.zip
Base: Document open(1)
-rw-r--r--Base/usr/share/man/man1/open.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/open.md b/Base/usr/share/man/man1/open.md
new file mode 100644
index 0000000000..90e806f500
--- /dev/null
+++ b/Base/usr/share/man/man1/open.md
@@ -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
+```