I\'m using a pipe of several commands in bash. Is there a way of configuring bash to terminate all commands in the whole pipeline immediately should one of the commands fail
sleep 5 doesn't produce any output until it finishes, while find / immediately produces output that bash attempts to pipe to false.
sleep 5
find /
false