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