mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
function old new delta builtin_break 93 129 +36 builtin_continue 21 47 +26 run_list 1973 1976 +3
4 lines
148 B
Text
Executable file
4 lines
148 B
Text
Executable file
while true; do echo A; { echo B; break; echo C; }; echo D; done
|
|
echo $?
|
|
for v in a b c; do echo A:$v; (echo B; break; echo C); echo D; done
|
|
echo $?
|