10 lines
124 B
Plaintext
Executable File
10 lines
124 B
Plaintext
Executable File
i=0
|
|
while test $i != 2; do
|
|
f() { echo First $i; }
|
|
f
|
|
f() { echo Second $i; }
|
|
f
|
|
: $((i++))
|
|
done
|
|
echo Done
|