index
:
forks/busybox
1_33_stable
master
Busybox tree with Carbs Linux patches
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
shell
/
hush_test
/
hush-arith
/
arith-postinc.tests
blob: 3fd9bfed5087bc58cd2f4c76e9f5555e536eee71 (
plain
)
1
2
3
4
5
echo 1 $((0++1)) echo 1 $((0--1)) x=-1; echo 1 $((0-$x)) x=+1; echo 1 $((0+$x)) echo Ok:$?