shellbox-sh/Bash 4.0
Run a command using Bash version 4.0
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| command | Bash command or path to executable or script to run | yes | — |
| failOnError | When set to true (default), the action will return an error if the command returns a non-zero exit code | — | true |
Outputs
| name | description |
|---|---|
| stdout | The standard output (STDOUT) of the executed command |
| stderr | The standard error (STDERR) of the executed command |
| output | The combines standard output and error of the executed command |
| exitcode | The numeric exit code of the executed command (0 indicates success) |
| passed | If the executed command exited with 0 exit code, this value will equal "true", otherwise it will equal "false" |
| failed | If the executed command exited with 0 exit code, this value will equal "false", otherwise it will equal "true" |