mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
11 lines
122 B
Text
Executable file
11 lines
122 B
Text
Executable file
a=A
|
|
f() {
|
|
local a
|
|
# the above line unsets $a
|
|
echo "A2:'$a'"
|
|
unset a
|
|
echo "A3:'$a'"
|
|
}
|
|
echo "A1:'$a'"
|
|
f
|
|
echo "A4:'$a'"
|