vote up 3 vote down star
2

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.

flag

38% accept rate

3 Answers

vote up 13 vote down check

With standard sh and bash, you can

set -e

It will

$ help set
...
        -e  Exit immediately if a command exits with a non-zero status.

It also works (from what I could gather) with zsh. It also should work for any Bourne shell descendant.

With csh/tcsh, you have to launch your script with #!/bin/csh -e

link|flag
Thanks, this seems to be what I want. I should sharpen my Google fu, I guess... :) – Pistos Dec 15 '08 at 15:56
Note that commands in conditionals can fail without causing the script to exit - which is crucial. For example: if grep something /some/where; then : it was found; else : it was not found; fi works fine, regardless of whether something is found in /some/where. – Jonathan Leffler Dec 16 '08 at 4:00
vote up 0 vote down

May be you could use:

$ <any_command> || exit 1
link|flag
vote up -6 vote down

$? will return the exit status of the last command executed

link|flag
@theman: Not really what I'm looking for. My needs are particular. – Pistos Dec 15 '08 at 15:55
pistos, stay in school – theman_on_vista Dec 15 '08 at 16:03
@theman: What are you trying to say? – Pistos Dec 15 '08 at 18:31
pistos, stay in school – theman (3 hours ago) – theman_on_vista Dec 15 '08 at 19:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.