Newer
Older
ubixos / bin / sh / tests / builtins / local1.0
@Charlie Root Charlie Root on 16 Jan 2018 244 bytes BSD Shell
# $FreeBSD: releng/11.1/bin/sh/tests/builtins/local1.0 238469 2012-07-15 10:22:13Z jilles $
# A commonly used but non-POSIX builtin.

f() {
	local x
	x=2
	[ "$x" = 2 ]
}
x=1
f || exit 3
[ "$x" = 1 ] || exit 3
f || exit 3
[ "$x" = 1 ] || exit 3