Execute raw commands
In JetBrains Fleet, you can execute raw commands and automate interactions with external tools using run configurations.
To do this, use the command run configuration type:
Once configured, you can run the command from the Run & Debug popup by pressing ⌘ R.
Key | Description |
|---|---|
(required) | The shell command to execute. |
| Command-line arguments for the program. The value is a JSON array, for example, |
| A human-readable name that identifies the run configuration. |
| Custom environment variables for the process, specified as a JSON object. To define an environment variable, add a property where the key is the variable name and the value is its value. For example:
"environment": {
"TEMP_DIR": "/home/user/temp",
"GENERATE_RANDOM_PASSWORD": "true"
}
|
| Names of other configurations to run before this configuration. For example: |
| Working directory for the run configuration. |
| If set to |
| Show application process output in PTY ( |