set -e doesn't abort on any statement with a boolean test. So if you do this:
set -e false && false echo hi you'll get "hi". This is true for loops, if and case structures and the boolean operators. Does this help? Kevin -- http://linuxfromscratch.org/mailman/listinfo/lfs-chat FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
