Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
cafb2d195d4d68e4e4c474453409a69643edf5aa
/
.
/
shell
/
hush_test
/
hush-misc
/
local1.tests
blob: b1e675059738ec07383acd14e60f18d9ac17c67b [
file
] [
log
] [
blame
]
Denys Vlasenko
5d6b872
2016-10-02 17:39:31 +0200
[
diff
] [
blame
]
1
a
=
A
2
f
()
{
3
local
a
4
# the above line unsets $a
5
echo
"A2:'$a'"
6
unset a
7
echo
"A3:'$a'"
8
}
9
echo
"A1:'$a'"
10
f
11
echo
"A4:'$a'"