In Bash I'm executing a command and putting the result in a variable like this:
export var=`svn ls`
But if SVN fails for some reason--say it returns a non-zero error code--export still returns status code 0. How do I detect if the executed command fails?