Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After enter set -e in an interactive bash, bash will exit immediately if any command exits with non-zero. How can I undo this effect? Thanks.

share|improve this question

3 Answers

up vote 68 down vote accepted

With set +e. Yeah, it's backward that you enable shell options with set - and disable them with set +. Historical raisins, donchanow.

share|improve this answer
Thank you very much, it's among the very last lines of corresponding manual page (faqs.org/docs/bashman/bashref_56.html) which I didn't read to the end. – Tianyi Cui Aug 18 '10 at 22:22
The bash manual is dauntingly huge, it is true. (FYI, since you seem to be new: it is the done thing to click the check mark under the best answer to your question, this is called "accepting" it.) – Zack Aug 18 '10 at 22:26
And the format set [--abefhkmnptuvxBCHP] [-o option] [argument ...] is really misleading. I simply assumed the undo is done by another builtin, tried unset and got nothing. It's interesting that in bash set and unset are not opposite, while I admit I currently know little about bash programming. – Tianyi Cui Aug 18 '10 at 22:29
3  
Sadly, the Unix shell language (most of which is not specific to 'bash') is one of the least internally consistent programming languages still in wide use today. You're going to have to learn lots more of these little warts. And I'd say that's a documentation bug, there. – Zack Aug 18 '10 at 22:36
When I was about to report this documentation bug to GNU, I found that the bash manual hosted in faqs.org is last updated 13 November 2001... This bug is actually non-existent in current manual. But faqs.org's SEO seems better so I was mislead. I'll report it to faqs.org then. – Tianyi Cui Aug 20 '10 at 9:07
show 1 more comment
  • Using + rather than - causes these flags to be turned off.

Source

share|improve this answer

It might be unhandy to use set +e/set -e each time you want to override it. I found a simpler solution.

Instead of doing it like this:

set +e
command_that_might_fail_but_we_want_to_ignore_it
set -e

you can do it like this:

command_that_might_fail_but_we_want_to_ignore_it || true

or, if you want to save keystrokes and don't mind being a little cryptic:

command_that_might_fail_but_we_want_to_ignore_it || :

Hope this helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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