Welcome to mirror list, hosted at ThFree Co, Russian Federation.

func2.tests « hush-misc « hush_test « shell - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 763203f15adfc4481f638305ec7865e97cbd2588 (plain)
1
2
3
4
5
6
7
8
9
i=0
while test $i != 2; do
    f() { echo First $i; }
    f
    f() { echo Second $i; }
    f
    : $((i++))
done
echo Done