|
|
|
|
|
by muxator
1061 days ago
|
|
Humble question: > Maybe (optionals) - chain steps and abort if any step is empty. Could this be (remotely) akin to the following shell pattern? set -o pipefail
cmd1 | cmd2 | ...
This would either return the result of a successful execution of tje whole pipe, or return at the first command erroring out.Does it make any sense? |
|