nt9856x/BSP/busybox/shell/ash_test/ash-misc/func_local2.tests
2023-03-28 15:07:53 +08:00

8 lines
126 B
Plaintext
Executable File

x=1
f() { echo $x; local x=$((x+1)); echo $x; }
g() { f; echo $x; f; local x=$((x+1)); f; echo $x; f; }
f
g
echo $x
echo Done