mirror of
https://github.com/sheumann/hush.git
synced 2024-11-18 17:10:36 +00:00
295fef80bc
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
8 lines
126 B
Plaintext
Executable File
8 lines
126 B
Plaintext
Executable File
x=1
|
|
f() { echo $x; local x=$((x+1)); echo $x; }
|
|
g() { f; echo $x; f; local x=$((x+1)); f; echo $x; f; }
|
|
f
|
|
g
|
|
echo $x
|
|
echo Done
|