mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
The "hack" to virtually parenthesize ? EXPR : made this unnecessary. The expression is effectively a?(b?(c):d):e and thus b?c:d is evaluated before continuing with the second : function old new delta evaluate_string 1148 1132 -16 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2 lines
40 B
Text
Executable file
2 lines
40 B
Text
Executable file
exec 2>&1
|
|
echo 3:$((0?1:2?3:4?5:6?7:8))
|