xref
: /
freebsd
/
bin
/
sh
/
tests
/
builtins
/
local7.0
(revision 09a53ad8f1318c5daae6cfb19d97f4f6459f0013)
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