mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
9 lines
124 B
Text
Executable file
9 lines
124 B
Text
Executable file
i=0
|
|
while test $i != 2; do
|
|
f() { echo First $i; }
|
|
f
|
|
f() { echo Second $i; }
|
|
f
|
|
: $((i++))
|
|
done
|
|
echo Done
|