mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
6 lines
150 B
Text
Executable file
6 lines
150 B
Text
Executable file
exec 2>&1
|
|
x='@'
|
|
a=2
|
|
# After processing nested ?:, outermost ?: should still remember to NOT evaluate a*=2
|
|
echo 42:$((1?0?41:42:(a*=2)))
|
|
echo "a=2:$a"
|