mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
The structure is: while cmd; do done bash doesn't accept it at all. We were accepting it but execution was buggy. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
4 lines
77 B
Text
Executable file
4 lines
77 B
Text
Executable file
while false; do
|
|
# bash will require at least ":" here...
|
|
done
|
|
echo OK:$?
|