1 #! @builddir@/grub-shell-tester
5 while test "$foo" != "1111"; do foo="${foo}1"; echo "$foo"; done
9 while test "$foo" != "aaaa"
16 until test "$foo" = "1111"; do foo="${foo}1"; echo $foo; done
18 until test "$foo" = "aaaa"
24 # check "$?" in condition gets its value from while body commands
27 while test "$?" != "0"
31 test "$foo" = "111111"