8 lines
126 B
Plaintext
8 lines
126 B
Plaintext
|
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
|