I have a script that I want to fail on any errors for one section of the code, but continue through errors in another.
I know 'set -e' will achieve the first requirement, but is there anyway to 'unset -e' for a script, or ignore errors for a specific line or function?