exitstatus1.0   [plain text]


# $FreeBSD$
f() {
	[ $? = $1 ] || exit 1
}

true
f 0
false
f 1