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