mirror of
https://github.com/sheumann/hush.git
synced 2024-12-25 03:32:18 +00:00
73327a048b
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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
|