1 2# . should return 0 if no command was executed. 3 4if false; then 5 exit 3 6else 7 . /dev/null 8 exit $? 9fi 10