mirror of
https://github.com/sheumann/hush.git
synced 2025-02-09 02:31:20 +00:00
2 lines
99 B
Plaintext
Executable File
2 lines
99 B
Plaintext
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
|