K 10 svn:author V 6 jilles K 8 svn:date V 27 2013-01-13T19:19:40.619400Z K 7 svn:log V 215 sh: Don't lose $? when backquoted command ends with semicolon or newline. An empty simple command was added and overwrote the exit status with 0. This affects `...` but not $(...). Example: v=`false;`; echo $? END