]> git.saurik.com Git - apple/shell_cmds.git/blame - sh/tests/builtins/local1.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / local1.0
CommitLineData
deb63bfb 1# $FreeBSD: head/bin/sh/tests/builtins/local1.0 238469 2012-07-15 10:22:13Z jilles $
71aad674
A
2# A commonly used but non-POSIX builtin.
3
4f() {
5 local x
6 x=2
7 [ "$x" = 2 ]
8}
9x=1
10f || exit 3
11[ "$x" = 1 ] || exit 3
12f || exit 3
13[ "$x" = 1 ] || exit 3