Files
busybox/shell/ash_test/ash-misc/func_local1.tests
T
2015-11-04 14:48:16 +01:00

6 lines
71 B
Plaintext
Executable File

export z=z
f() { local z=a; env | grep ^z; }
f
env | grep ^z
echo Done