xref
: /
freebsd
/
bin
/
sh
/
tests
/
builtins
/
local7.0
(revision eb9da1ada8b6b2c74378a5c17029ec5a7fb199e6)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
# $FreeBSD$
2
3
f() {
4
local x
5
readonly x=2
6
}
7
unset x
8
f
9
x=4
10
[ "$x" = 4 ]
11