From 15daf88e9305748794938c75470f0289e7166b44 Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Sun, 19 Apr 2020 12:08:38 +0300 Subject: [PATCH] Base: Document open(1) --- Base/usr/share/man/man1/open.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Base/usr/share/man/man1/open.md 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 +``` + +## 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 +```