Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/shell/hush_test/hush-misc/break5.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (show annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years, 1 month ago) by niro
File size: 148 byte(s)
-updated to busybox-1.13.4
1 while true; do echo A; { echo B; break; echo C; }; echo D; done
2 echo $?
3 for v in a b c; do echo A:$v; (echo B; break; echo C); echo D; done
4 echo $?