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