Suppose a shell script (/bin/sh or /bin/bash) contained several commands. How can I cleanly make the script terminate if any of the commands has a failing exit status? Obviously, one can use if blocks and/or callbacks, but is there a cleaner, more concise way? Using && is not really an option either, because the commands can be long, or the script could have non-trivial things like loops and conditionals.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
With standard
It will
It also works (from what I could gather) with With |
|||||||
|
|
May be you could use:
|
|||||||
|
|
You can check $? to see what the most recent exit code is.. e.g
|
|||||||
|