blob: 763203f15adfc4481f638305ec7865e97cbd2588 [file] [log] [blame]
Ron Yorston85405c82015-11-03 09:37:40 +00001i=0
2while test $i != 2; do
3 f() { echo First $i; }
4 f
5 f() { echo Second $i; }
6 f
7 : $((i++))
8done
9echo Done