10 lines
63 B
Plaintext
10 lines
63 B
Plaintext
# $FreeBSD$
|
|
f() {
|
|
[ $? = $1 ] || exit 1
|
|
}
|
|
|
|
true
|
|
f 0
|
|
false
|
|
f 1
|