11 lines
115 B
Plaintext
11 lines
115 B
Plaintext
|
# $FreeBSD$
|
||
|
|
||
|
# . should return 0 if no command was executed.
|
||
|
|
||
|
if false; then
|
||
|
exit 3
|
||
|
else
|
||
|
. /dev/null
|
||
|
exit $?
|
||
|
fi
|