2 lines
99 B
Plaintext
2 lines
99 B
Plaintext
|
x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x
|