mirror of https://github.com/databricks/cli.git
17 lines
365 B
Plaintext
17 lines
365 B
Plaintext
|
|
>>> [CLI] bundle exec -- echo hello, world
|
|
hello, world
|
|
|
|
>>> [CLI] bundle exec -- --help
|
|
Error: starting "--help" failed: exec: "--help": executable file not found in $PATH
|
|
|
|
Exit code: 1
|
|
|
|
>>> [CLI] bundle exec -- bash -c exit 5
|
|
Error: running "bash -c exit 5" failed with exit code: 5
|
|
|
|
Exit code: 1
|
|
|
|
>>> [CLI] bundle exec -- bash -c echo hello > /dev/stderr
|
|
hello
|