mirror of https://github.com/databricks/cli.git
18 lines
318 B
Plaintext
18 lines
318 B
Plaintext
|
|
>>> [CLI] bundle exec -- echo hello, world
|
|
hello, world
|
|
|
|
>>> [CLI] bundle exec -- pwd
|
|
[TMPDIR]
|
|
|
|
>>> [CLI] bundle exec -- echo --help
|
|
--help
|
|
|
|
>>> [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
|