mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
10 lines
124 B
Plaintext
10 lines
124 B
Plaintext
|
i=0
|
||
|
while test $i != 2; do
|
||
|
f() { echo First $i; }
|
||
|
f
|
||
|
f() { echo Second $i; }
|
||
|
f
|
||
|
: $((i++))
|
||
|
done
|
||
|
echo Done
|