busybox/shell/ash_test/ash-arith/arith-comma1.tests
Denys Vlasenko 8ccb3f7b13 shell: add a few yet-failing arithmentic tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2023-06-13 15:21:22 +02:00

6 lines
64 B
Text
Executable file

exec 2>&1
a='b=10'
b=3
echo 10:$((a,b))
echo "a=$a"
echo "b=$b"