From e728cecb4de8be61f1faa580293e24a28fa0a144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Zaefferer?= Date: Sun, 17 May 2020 19:37:15 +0200 Subject: [PATCH] add docs for start command (#1816) --- docs/commands/start.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/commands/start.md diff --git a/docs/commands/start.md b/docs/commands/start.md new file mode 100644 index 0000000000..8bcdcd774b --- /dev/null +++ b/docs/commands/start.md @@ -0,0 +1,26 @@ +# start + +Opens each file/directory/URL using the default application. + +Syntax: `start ...args{flags}` + +### Parameters + +* `args`: a list of space-separated files to open + +### Flags + + -a --application + Specifies the application used for opening the files/directories/urls + +## Example + +Open `index.html` in the system's default browser (cross platform): +```shell +> start index.html +``` + +Open `index.html` in Firefox (specific path for OSX): +```shell +start index.html -a /Applications/Firefox.app +```