mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
1 line
99 B
Text
Executable file
1 line
99 B
Text
Executable file
x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x
|