add docs for start command (#1816)

This commit is contained in:
Jörn Zaefferer 2020-05-17 19:37:15 +02:00 committed by GitHub
parent 41e1aef369
commit e728cecb4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
docs/commands/start.md Normal file
View File

@ -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 <string>
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
```