diff options
author | Sergey Bugaev <bugaevc@serenityos.org> | 2020-04-19 12:08:38 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-19 11:14:26 +0200 |
commit | 15daf88e9305748794938c75470f0289e7166b44 (patch) | |
tree | 295cb57b419407ccc9efec6ca85cf958694c92c1 | |
parent | b6eb7f42ac5036070874e2cac234ad347775d539 (diff) | |
download | serenity-15daf88e9305748794938c75470f0289e7166b44.zip |
Base: Document open(1)
-rw-r--r-- | Base/usr/share/man/man1/open.md | 22 |
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 +``` |