mirror of
https://git.busybox.net/busybox
synced 2026-02-07 20:50:26 +00:00
Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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
|