mirror of
https://github.com/sheumann/hush.git
synced 2025-02-13 12:31:05 +00:00
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
|