2020-05-17 19:37:15 +02:00
|
|
|
# start
|
|
|
|
|
|
|
|
Opens each file/directory/URL using the default application.
|
|
|
|
|
|
|
|
Syntax: `start ...args{flags}`
|
|
|
|
|
2020-06-23 20:21:47 +02:00
|
|
|
## Parameters
|
2020-05-17 19:37:15 +02:00
|
|
|
|
|
|
|
* `args`: a list of space-separated files to open
|
|
|
|
|
2020-06-23 20:21:47 +02:00
|
|
|
## Flags
|
2020-05-17 19:37:15 +02:00
|
|
|
|
|
|
|
-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):
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2020-05-17 19:37:15 +02:00
|
|
|
```shell
|
|
|
|
> start index.html
|
|
|
|
```
|
|
|
|
|
|
|
|
Open `index.html` in Firefox (specific path for OSX):
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2020-05-17 19:37:15 +02:00
|
|
|
```shell
|
|
|
|
start index.html -a /Applications/Firefox.app
|
|
|
|
```
|