nt9856x/BSP/busybox/shell/ash_test/ash-arith/arith-postinc.tests
2023-03-28 15:07:53 +08:00

6 lines
91 B
Plaintext
Executable File

echo 1 $((0++1))
echo 1 $((0--1))
x=-1; echo 1 $((0-$x))
x=+1; echo 1 $((0+$x))
echo Ok:$?